blob: 5132e2c375c74b8c7d11d78b6f5e5fc80714417b [file] [log] [blame]
// Test case for Issue 352:
// https://github.com/typetools/checker-framework/issues/352
import org.checkerframework.checker.tainting.qual.Untainted;
public class Issue352 {
class Nested {
@Untainted Issue352 context(@Untainted Issue352.@Untainted Nested this) {
return Issue352.this;
}
}
}