blob: 8eccf08eb0ad93231bee51e216c0c0849f3a61a0 [file] [log] [blame]
import org.junit.Test;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.assertFalse;
class X {
@Test
void t() {
assertFalse(!true);
}
}