blob: 70964935d12290a2c32ea0bb5309c8dc7b277e28 [file] [log] [blame]
import org.checkerframework.checker.index.qual.LessThan;
public class UnaryOperationParsedIncorrectly {
void method1(@LessThan("#2") int var1, int var2) {
// Function implementation
}
void method2() {
method1(-10, 10);
method1(-10, +10);
}
}