Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2ded14072ba9eb77cf92bd3aeeb3e72e7eb595eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package compileorder;
public class TheTest {
        final B b = new B();
        final A a = new A<@b>();

        public void run() {
                within(b) {
                        a.run();                        
                }
        }
        public static void main(String[] args) {
			TheTest theTest = new TheTest();
			theTest.run();
		}
 }

Back to the top