forbid lambda in conditional inside cast context

This commit is contained in:
Anna Kozlova
2014-02-24 13:58:41 +01:00
parent 232f8bd465
commit f1b256f416
2 changed files with 2 additions and 1 deletions

View File

@@ -23,5 +23,6 @@ interface II {
class Test1 {
void bar(boolean b){
II ik = b ? (s)-> true : (s)->false;
II ik1 = (II)(b ? <error descr="Lambda expression not expected here">(s)-> true</error> : <error descr="Lambda expression not expected here">(s)->false</error>);
}
}