summaryrefslogtreecommitdiff
path: root/test/files/run/t5923b/Test.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t5923b/Test.scala')
-rw-r--r--test/files/run/t5923b/Test.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/run/t5923b/Test.scala b/test/files/run/t5923b/Test.scala
new file mode 100644
index 0000000000..7c2627462a
--- /dev/null
+++ b/test/files/run/t5923b/Test.scala
@@ -0,0 +1,7 @@
+object Test extends App {
+ import scala.collection.generic.CanBuildFrom
+ val cbf = implicitly[CanBuildFrom[Nothing, Nothing, Array[Nothing]]]
+ println(cbf().result.getClass)
+ println(new Array[Nothing](0).getClass)
+ println(Array[Nothing]().getClass)
+} \ No newline at end of file