blob: 26993dd96d15416e163b26cd65d45a7f21b9bec2 [file] [log] [blame]
import org.checkerframework.checker.tainting.qual.*;
public class Issue3561 {
void outerMethod(@Untainted Issue3561 this) {}
class Inner {
void innerMethod(@Untainted Issue3561.@Untainted Inner this) {
Issue3561.this.outerMethod();
}
void innerMethod2(@Tainted Issue3561.@Untainted Inner this) {
// :: error: (method.invocation)
Issue3561.this.outerMethod();
}
}
}