Skip to content

Commit 0a6ca0c

Browse files
committed
Fix #1932: Add regression test
1 parent be50d2c commit 0a6ca0c

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

tests/pickling/i1932/Filter.scala

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
trait Filter {
2+
def info: Info
3+
}

tests/pickling/i1932/Info.scala

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class Info(k: Keyboard)
2+
3+
sealed trait Thing
4+
class Keyboard extends Thing
5+
class Laptop(k: Keyboard) extends Thing

0 commit comments

Comments
 (0)