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
I wanted to test out in DOT a way to create nominal subtyping hierarchies, that can be modular, and both sealed or open. I get a StackOverflow for the newSubCat def.
[info] Running dotty.tools.dotc.Main examples/hello.scala
[error] Exception in thread "main" java.lang.StackOverflowError
[error] at dotty.tools.dotc.core.Scopes$Scope.denotsNamed(Scopes.scala:117)
[error] at dotty.tools.dotc.core.SymDenotations$ClassDenotation.membersNamed(SymDenotations.scala:1498)
[error] at dotty.tools.dotc.core.SymDenotations$ClassDenotation.findMember(SymDenotations.scala:1551)
[error] at dotty.tools.dotc.core.Types$Type.go$1(Types.scala:432)
[error] at dotty.tools.dotc.core.Types$Type.goRefined$1(Types.scala:457)
[error] at dotty.tools.dotc.core.Types$Type.go$1(Types.scala:428)
[error] at dotty.tools.dotc.core.Types$Type.findMember(Types.scala:522)
[error] at dotty.tools.dotc.core.Denotations$Denotation.findMember(Denotations.scala:177)
[error] at dotty.tools.dotc.core.Types$Type.go$1(Types.scala:432)
[error] at dotty.tools.dotc.core.Types$Type.findMember(Types.scala:522)
[error] at dotty.tools.dotc.core.Denotations$Denotation.findMember(Denotations.scala:177)
[error] at dotty.tools.dotc.core.Types$Type.go$1(Types.scala:432)
[error] at dotty.tools.dotc.core.Types$Type.goAnd$1(Types.scala:512)
[error] at dotty.tools.dotc.core.Types$Type.go$1(Types.scala:446)
[error] at dotty.tools.dotc.core.Types$Type.findMember(Types.scala:522)
[error] at dotty.tools.dotc.core.Denotations$Denotation.findMember(Denotations.scala:177)
[error] at dotty.tools.dotc.core.Types$Type.go$1(Types.scala:432)
[error] at dotty.tools.dotc.core.Types$Type.findMember(Types.scala:522)
[error] at dotty.tools.dotc.core.Types$Type.memberExcluding(Types.scala:418)
[error] at dotty.tools.dotc.core.Types$Type$$anonfun$member$1.apply(Types.scala:409)
[error] at dotty.tools.dotc.core.Types$Type$$anonfun$member$1.apply(Types.scala:409)
[error] at dotty.tools.dotc.util.Stats$.track(Stats.scala:36)
[error] at dotty.tools.dotc.core.Types$Type.member(Types.scala:408)
[error] at dotty.tools.dotc.core.Types$abstractTermNameFilter$.apply(Types.scala:3354)
[error] at dotty.tools.dotc.core.Types$Type.memberNames(Types.scala:547)
[error] at dotty.tools.dotc.core.Types$Type.memberNames(Types.scala:551)
[error] at dotty.tools.dotc.core.TypeOps$$anonfun$isVolatile$1$$anonfun$apply$1.apply(TypeOps.scala:356)
[error] at dotty.tools.dotc.core.TypeOps$$anonfun$isVolatile$1$$anonfun$apply$1.apply(TypeOps.scala:353)
[error] at scala.collection.LinearSeqOptimized$class.exists(LinearSeqOptimized.scala:93)
[error] at scala.collection.immutable.List.exists(List.scala:84)
[error] at dotty.tools.dotc.core.TypeOps$$anonfun$isVolatile$1.apply(TypeOps.scala:353)
[error] at dotty.tools.dotc.core.TypeOps$$anonfun$isVolatile$1.apply(TypeOps.scala:348)
[error] at scala.collection.LinearSeqOptimized$class.forall(LinearSeqOptimized.scala:83)
[error] at scala.collection.immutable.List.forall(List.scala:84)
[error] at dotty.tools.dotc.core.TypeOps$class.isVolatile(TypeOps.scala:348)
[error] at dotty.tools.dotc.core.Contexts$Context.isVolatile(Contexts.scala:53)
[error] at dotty.tools.dotc.core.TypeOps$$anonfun$isVolatile$1.apply(TypeOps.scala:359)
[error] at dotty.tools.dotc.core.TypeOps$$anonfun$isVolatile$1.apply(TypeOps.scala:348)
[error] at scala.collection.LinearSeqOptimized$class.forall(LinearSeqOptimized.scala:83)
[error] at scala.collection.immutable.List.forall(List.scala:84)
[error] at dotty.tools.dotc.core.TypeOps$class.isVolatile(TypeOps.scala:348)
[error] at dotty.tools.dotc.core.Contexts$Context.isVolatile(Contexts.scala:53)
[error] at dotty.tools.dotc.core.TypeOps$$anonfun$isVolatile$1.apply(TypeOps.scala:359)
[error] at dotty.tools.dotc.core.TypeOps$$anonfun$isVolatile$1.apply(TypeOps.scala:348)
[error] at scala.collection.LinearSeqOptimized$class.forall(LinearSeqOptimized.scala:83)
...
The text was updated successfully, but these errors were encountered:
odersky
added a commit
to odersky/dotty
that referenced
this issue
Jan 29, 2016
Replaces isVolatile, which is too weak (and more complicated).
Backwards compatibility with Scala2 is ensured by dropping the
requirement in Scala2 mode.
Fixesscala#1047, which now compiles without inifinite recursion.
Replaces isVolatile, which is too weak (and more complicated).
Backwards compatibility with Scala2 is ensured by dropping the
requirement in Scala2 mode.
Fixesscala#1047, which now compiles without inifinite recursion.
I wanted to test out in DOT a way to create nominal subtyping hierarchies, that can be modular, and both sealed or open. I get a StackOverflow for the
newSubCat
def.The error is
The text was updated successfully, but these errors were encountered: