Community
Participate
Working Groups
In the following Xtend2 class the reference to toString cannot be resolved: class Other { def foo() { bar(i|i.toString) } def bar(Object o) { } } Changing the code to the following and it works: class Other { def foo() { bar(i|i.toString) } def bar((Object)=>Object o) { } }
Pushed to master.
Closing all bugs that were set to RESOLVED before Neon.0