blob: 27b655775111e61c75e609be510eaeb17d4b06a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public interface WithNested<Z> {
class IAmStaticReally {
final String x;
@java.lang.SuppressWarnings("all")
public IAmStaticReally(final String x) {
this.x = x;
}
@java.lang.SuppressWarnings("all")
public WithNested.IAmStaticReally withX(final String x) {
return this.x == x ? this : new WithNested.IAmStaticReally(x);
}
}
}
|