blob: ac759342671729461d6a8202ce86adc7a9dfb1d4 [file] [log] [blame]
// Test case for Issue 1698:
// https://github.com/typetools/checker-framework/issues/1698
public class Issue1698 {
static class B {
static C f() {
return new B().new C();
}
class C {}
}
}