aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/not-representable/pos/annotated-treecopy/Test_2.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-12-21 12:44:03 +0100
committerMartin Odersky <odersky@gmail.com>2014-12-21 12:44:03 +0100
commitb6755f6927c07337b0819d7503f2c7b1674d892f (patch)
tree1758dff616c91e4d52e26cd3e407651aa3034fe1 /tests/disabled/not-representable/pos/annotated-treecopy/Test_2.scala
parent7d513b4f3342c17e8b603a43c40770d0f97424de (diff)
downloaddotty-b6755f6927c07337b0819d7503f2c7b1674d892f.tar.gz
dotty-b6755f6927c07337b0819d7503f2c7b1674d892f.tar.bz2
dotty-b6755f6927c07337b0819d7503f2c7b1674d892f.zip
tests reorgs
Move some tests into proper slots + comments what they are.
Diffstat (limited to 'tests/disabled/not-representable/pos/annotated-treecopy/Test_2.scala')
-rw-r--r--tests/disabled/not-representable/pos/annotated-treecopy/Test_2.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/disabled/not-representable/pos/annotated-treecopy/Test_2.scala b/tests/disabled/not-representable/pos/annotated-treecopy/Test_2.scala
new file mode 100644
index 000000000..1c6b862ef
--- /dev/null
+++ b/tests/disabled/not-representable/pos/annotated-treecopy/Test_2.scala
@@ -0,0 +1,5 @@
+object Test extends App {
+ import Macros._
+ // tree { (x:((Int,Int,Int),(Int,Int,Int))) => { val y=x; val ((r1,m1,c1),(r2,m2,c2))=y; (r1, m1 + m2 + r1 * c1 * c2, c2) } }
+ tree { (x:((Int,Int,Int),(Int,Int,Int))) => { val ((r1,m1,c1),(r2,m2,c2))=x; (r1, m1 + m2 + r1 * c1 * c2, c2) } }
+}