mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 02:54:35 +02:00
18 lines
392 B
Java
18 lines
392 B
Java
/**
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8161383
|
|
* @summary javac is looking for operator symbols at the wrong place
|
|
* @compile LookingForOperatorSymbolsAtWrongPlaceTest.java
|
|
*/
|
|
|
|
public class LookingForOperatorSymbolsAtWrongPlaceTest {
|
|
class Base {
|
|
protected int i = 1;
|
|
}
|
|
|
|
class Sub extends Base {
|
|
void func(){
|
|
Sub.super.i += 10;
|
|
}
|
|
}
|
|
}
|