We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
object Foo { val (A, B) = () }
Compiles fine even though neither A nor B are defined.
A
B
object Foo { val (A, b) = () }
Doesn't compile because Unbound Identifier Error (on A).
Unbound Identifier Error
object Foo { val (a, b) = () }
Doesn't compile because cannot test if value types are references.
cannot test if value types are references