Files
codeql/java/ql/test/query-tests/SelfAssignment/Test.java
2018-08-30 10:48:05 +01:00

23 lines
225 B
Java

class Outer {
int x;
Outer(int x) {
// NOT OK
x = x;
// OK
this.x = x;
}
Outer() {}
class Inner {
int x;
// OK
{ x = Outer.this.x; }
}
class Inner2 extends Outer {
// OK
{ x = Outer.this.x; }
}
}