- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
-Xexperimental dependent types regression in 2.9
Tue, 2011-04-26, 02:26
The following code compiles with the -Xexperimental flag with both 2.7.7
and 2.8.1. However, with 2.9.0RC1 (as well as the eclipse nightly
plugin), I get
scalac -Xexperimental Broke.scala
../../Broke.scala:6: error: type mismatch;
found : Broke.this.tempval.type with Broke.this.Foo[x$2.type(in
value broke_val)] where type x$2.type(in value broke_val) <:
java.lang.Object with Singleton
required: Broke.this.tempval.type with Broke.this.Foo[x$2.type(in
value broke_val)] forSome { type x$2.type(in value broke_val) <:
java.lang.Object with Singleton }
val broke_val = new AnyRef {} -: tempval // type mismatch error only
when assigning
^
one error found
class Broke {
val tempval = new AnyRef {val roleA = new AnyRef with Bar}.roleA
new AnyRef {} -: tempval // when not assigning to anything, no problem
val broke_val = new AnyRef {} -: tempval // type mismatch error only
when assigning
trait Foo[AnyRef] { }
trait Bar extends Foo[AnyRef] {
def -:(core: AnyRef): this.type with Foo[core.type] = throw new
Exception()
}
}
pastebin version in case the code gets munged:
http://pastebin.com/atYNLBYC
-Tupshin
Wed, 2011-04-27, 03:37
#2
Re: -Xexperimental dependent types regression in 2.9
Done.
https://lampsvn.epfl.ch/trac/scala/ticket/4518
Thanks.
-Tupshin
On 04/26/2011 02:59 AM, martin odersky wrote:
https://lampsvn.epfl.ch/trac/scala/ticket/4518
Thanks.
-Tupshin
On 04/26/2011 02:59 AM, martin odersky wrote:
BANLkTin+K7mr3qSeoWQPeD3ykBgskF0pjg [at] mail [dot] gmail [dot] com" type="cite">
On Tue, Apr 26, 2011 at 3:26 AM, Tupshin Harper <tupshin [at] tupshin [dot] com" rel="nofollow">tupshin@tupshin.com> wrote:
The following code compiles with the -Xexperimental flag with both 2.7.7 and 2.8.1. However, with 2.9.0RC1 (as well as the eclipse nightly plugin), I get
scalac -Xexperimental Broke.scala
../../Broke.scala:6: error: type mismatch;
found : Broke.this.tempval.type with Broke.this.Foo[x$2.type(in value broke_val)] where type x$2.type(in value broke_val) <: java.lang.Object with Singleton
required: Broke.this.tempval.type with Broke.this.Foo[x$2.type(in value broke_val)] forSome { type x$2.type(in value broke_val) <: java.lang.Object with Singleton }
val broke_val = new AnyRef {} -: tempval // type mismatch error only when assigning
^
one error found
class Broke {
val tempval = new AnyRef {val roleA = new AnyRef with Bar}.roleA
new AnyRef {} -: tempval // when not assigning to anything, no problem
val broke_val = new AnyRef {} -: tempval // type mismatch error only when assigning
trait Foo[AnyRef] { }
trait Bar extends Foo[AnyRef] {
def -:(core: AnyRef): this.type with Foo[core.type] = throw new Exception()
}
}
Thanks for reporting the problem. It would be good to file a ticket in trak. We'll try to take a look at this soon.
-- Martin
On Tue, Apr 26, 2011 at 3:26 AM, Tupshin Harper <tupshin@tupshin.com> wrote:
Thanks for reporting the problem. It would be good to file a ticket in trak. We'll try to take a look at this soon.
-- Martin