forked from scala/scala3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix scala#5776: Allow explicitly adding a parent that is added by des…
…ugaring
- Loading branch information
Showing
3 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
case class Foo1(x: Int) extends Serializable with Serializable // error | ||
case class Foo2(x: Int) extends scala.Serializable with Serializable // error |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
case class Foo1(x: Int) extends Serializable | ||
case class Foo2(x: Int) extends scala.Serializable | ||
case class Foo3(x: Int) extends Product | ||
|
||
case object Foo4 extends Serializable | ||
|
||
object Scope { | ||
class Serializable | ||
case class Foo5(x: Int) extends Serializable | ||
|
||
val f = Foo5(1) | ||
f: Scope.Serializable | ||
f: scala.Serializable | ||
} |