Add extra test for new-expression template

This commit is contained in:
Alexander Zolotov
2013-12-24 15:30:10 +04:00
parent 4d61bc17b9
commit b021743bbc
3 changed files with 11 additions and 0 deletions
@@ -0,0 +1,5 @@
public class Foo {
void m() {
Foo variable = Foo.new<caret>
}
}
@@ -0,0 +1,5 @@
public class Foo {
void m() {
Foo variable = new Foo();<caret>
}
}