blob: f96a5a2f077df49a65a4ab3d25998e2f83d81673 [file] [log] [blame]
// "Create Method 'fooBar'" "true"
interface I {
static void fooBar() {
}
}
class Test {
void test() {
Runnable runnable = I::fooBar;
}
}