Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 67becb5baaa734686491f88b8fc8c05b51eee32a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package staticMethods_in;

interface A_test4 {
	default void foo() {
		Runnable r= new Runnable() {
			@Override
			public void run() {
				extracted();
			}
		};		
	}

	default void extracted() {
		/*[*/int i = 0;/*]*/
	}
}

Back to the top