summaryrefslogtreecommitdiff
path: root/test/files/pos/sam_erasure_boundedwild.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/sam_erasure_boundedwild.scala')
-rw-r--r--test/files/pos/sam_erasure_boundedwild.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/pos/sam_erasure_boundedwild.scala b/test/files/pos/sam_erasure_boundedwild.scala
new file mode 100644
index 0000000000..1ec27e0ea4
--- /dev/null
+++ b/test/files/pos/sam_erasure_boundedwild.scala
@@ -0,0 +1,11 @@
+class Test {
+ trait Q[T] {
+ def toArray[T](x: Array[T]): Array[T]
+ def toArray(): Array[T]
+ }
+
+ def crashTyper: Array[_] = {
+ val x : Q[_] = ???
+ x.toArray // crashes while doing overload resolution
+ }
+} \ No newline at end of file