|
Scala example source code file (lazy-override.check)
The Scala lazy-override.check source code
lazy-override.scala:11: error: overriding value x in class A of type Int;
lazy value x cannot override a concrete non-lazy value
override lazy val x: Int = { print("/*B.x*/"); 3 }
^
lazy-override.scala:13: error: overriding lazy value y in class A of type Int;
value y must be declared lazy to override a concrete lazy value
override val y: Int = { print("/*B.y*/"); 3 }
^
two errors found
Other Scala examples (source code examples)Here is a short list of links related to this Scala lazy-override.check source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.