blob: d3b7cb624959e6c5895a6b13179994eb388ac1cf [file] [log] [blame]
// "Replace with lambda" "false"
class Foo11 {
Runnable runnable = new Runnable() {
public void run() {
int x = 5;
new Runn<caret>able() {
public void run () {
int x = 10;
}
} ;
}
};
}