IDEA-42131

This commit is contained in:
Alexey Kudravtsev
2010-08-30 12:19:31 +04:00
parent 1403da14a0
commit 03a403cd29
17 changed files with 179 additions and 20 deletions
@@ -0,0 +1,12 @@
public class Clas extends Clas2{
int foo;
<caret>
}
class Clas2 {
int foo;
Clas2(int foo) {
this.foo = foo;
}
}