为什么 Scala 编译器在 2.10 中对 self 类型变得更加严格? [已关闭]

问题描述 投票:0回答:2

我有以下代码:

  trait TFn1B {
    type In
    type Out
    type Apply[T <: In] <: Out
  }

  trait TFn1[I, O] extends TFn1B {
    type In = I
    type Out = O
  }

  trait >>[F1 <: TFn1[_, _], F2 <: TFn1[_, _]] extends TFn1[F1#In, F2#Out] {
    type Apply[T] = F2#Apply[F1#Apply[T]]
  }

它在 Scala 2.9.1 上编译,没有警告或错误。

但是在当前的 2.10 版本中,我收到以下错误消息:

Fun.scala:12: error: illegal inheritance;
 self-type this.>>[F1,F2] does not conform to this.TFn1[_$1,_$4]'s selftype this.TFn1[_$1,_$4]
  trait >>[F1 <: TFn1[_, _], F2 <: TFn1[_, _]] extends TFn1[F1#In, F2#Out] {
                                                       ^
one error found

这是回归还是代码不健全并且编译器最近才开始捕获它? 如果代码错误,有什么解决方法可以使其再次工作?

scala types self type-systems
2个回答
3
投票

2
投票

对我来说这看起来像是一个错误。超类的类型参数没有限制,但是,更重要的是,

-explaintypes
的跟踪对我来说看起来很可疑:

scala>   trait >>[F1 <: TFn1[_, _], F2 <: TFn1[_, _]] extends TFn1[F1#In, F2#Out] {
     |     type Apply[T] = F2#Apply[F1#Apply[T]]
     |   }
<console>:9: error: illegal inheritance;
 self-type >>[F1,F2] does not conform to TFn1[_$1,_$4]'s selftype TFn1[_$1,_$4]
         trait >>[F1 <: TFn1[_, _], F2 <: TFn1[_, _]] extends TFn1[F1#In, F2#Out] {
                                                              ^
>>[F1,F2] <: TFn1[_$1,_$4]?
  TFn1[_$1,_$4] <: TFn1[_$1,_$4]?
    _$1 <: _$1?
      _$1 <: Nothing?
        <notype> <: Nothing?
        false
        Any <: Nothing?
          <notype> <: Nothing?
          false
        false
      false
      Any <: _$1?
        Any <: Nothing?
          <notype> <: Nothing?
          false
        false
      false
    false
  false
false

具体来说,我不明白它如何或为什么不能证明

TFn1[_$1,_$4] <: TFn1[_$1,_$4]
甚至
_$1 <: _$1

© www.soinside.com 2019 - 2024. All rights reserved.