lambda -> method ref: don't transform by default array access qualifiers (IDEA-166740)

This commit is contained in:
Anna Kozlova
2017-01-18 18:20:34 +03:00
parent 04b882cbbf
commit e323aa8b9c
2 changed files with 9 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
// "Replace lambda with method reference" "false"
class Test {
{
Test[] t = new Test[1];
Runnable r = () -> t[0].to<caret>String();
}
}