blob: ae119dd5213a705d6f04f02f08ba37aaee8ab8ce [file] [log] [blame]
// "Create Method 'fooBar'" "true"
interface I {
}
class Test {
void test() {
Runnable runnable = I::foo<caret>Bar;
}
}