与えられた:
trait Foo
trait Bar { this: Foo => }
trait NoBar { this: Foo => }
型システムをだまして許可しないようにする方法はありますか:
new Foo with Bar with NoBar {}
与えられた:
trait Foo
trait Bar { this: Foo => }
trait NoBar { this: Foo => }
型システムをだまして許可しないようにする方法はありますか:
new Foo with Bar with NoBar {}