moving tests to CE
[fedora-idea.git] / java / java-tests / testData / inspection / unusedReturnValue / nonLiteral / src / Test.java
blobe87ace5911316e1ee44f00737ba1270b3bbaeed7
1 class Test {
2 boolean foo() {
3 return false;
6 boolean isUnused() {
7 return !foo();
10 public static void main(String[] args) {
11 new Test().isUnused();