I have a trait with lazy val and, when I try to write a proxy, getting this error
....
java.lang.Error: no-symbol does not have owner
trait Demo {
def id = 0
lazy val lastShowTime = System.currentTimeMillis()
}
class DemoProxy(@Proxy instance: Demo) extends Demo