add new not expression test

This commit is contained in:
Andrey Starovoyt
2014-05-19 13:06:16 +04:00
parent c7ce438ad1
commit 96d93a88e1
3 changed files with 14 additions and 0 deletions
@@ -0,0 +1,5 @@
public class Foo {
boolean m(boolean b) {
m(b!<caret>);
}
}
@@ -0,0 +1,5 @@
public class Foo {
boolean m(boolean b) {
m(!b<caret>);
}
}