blob: b7d5f9317716db7f6fdd7464a8d65d4c3885f935 [file] [log] [blame]
// "Create Method 'f'" "true"
class A {
{
new Runnable() {
public void run() {
B.f(this);
}
};
}
}
class B {
public static void f(Runnable runnable) {
<caret><selection></selection>
}
}