blob: ad18ec5c51411c7a2d53dd1f0ad1f02ae01749f9 [file] [log] [blame]
/**
* @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;
}
}
}