summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-05-06 14:57:56 +0000
committerPaul Phillips <paulp@improving.org>2010-05-06 14:57:56 +0000
commitcb35c38f14f6a53c38966bde8e64dcfa9af17918 (patch)
treed048820d306d711bafec4d9137696340ec1884e6 /test/files/run
parent7cb9037e17f9202c4fb43ef7dc0e389e48f2ed49 (diff)
downloadscala-cb35c38f14f6a53c38966bde8e64dcfa9af17918.tar.gz
scala-cb35c38f14f6a53c38966bde8e64dcfa9af17918.tar.bz2
scala-cb35c38f14f6a53c38966bde8e64dcfa9af17918.zip
Fixed bug in transpose, closes #3397, no review.
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/bug3397.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/run/bug3397.scala b/test/files/run/bug3397.scala
new file mode 100644
index 0000000000..2c8cbed3ab
--- /dev/null
+++ b/test/files/run/bug3397.scala
@@ -0,0 +1,7 @@
+object Test {
+ def main(args: Array[String]): Unit = {
+ val x = Seq(Set(1,2,3),Set(4,5,6),Set(7,8,9)).transpose
+
+ ()
+ }
+}