You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
They work normally for a class member in most cases except the following one:
classFoo(abc: Int) {
defmethod:Int= {
ab@@// <- no `abc` in results42
}
}
However, it works in other cases:
classFoo(abc: Int) {
ab@@// <- works in bodydefmethod:Int= {
ab@@// <- works in empty method body
}
defmethod2:Int= {
valsmth= ab@@// <- works if goes after assignment to val42
}
}
Expectation
It should return a reference to the member in the first described case.
The text was updated successfully, but these errors were encountered:
3.0.0-RC2
They work normally for a class member in most cases except the following one:
However, it works in other cases:
Expectation
It should return a reference to the member in the first described case.
The text was updated successfully, but these errors were encountered: