summaryrefslogtreecommitdiff
path: root/test/files/pos/t8719/Test_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t8719/Test_2.scala')
-rw-r--r--test/files/pos/t8719/Test_2.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/pos/t8719/Test_2.scala b/test/files/pos/t8719/Test_2.scala
new file mode 100644
index 0000000000..997eb2f236
--- /dev/null
+++ b/test/files/pos/t8719/Test_2.scala
@@ -0,0 +1,10 @@
+case class Foo(i: Int, c: Char)
+
+object Bar {
+ def unapply(foo: Foo): Option[(Int, Char)] = Some((foo.i, foo.c))
+}
+
+object Test extends App {
+ println(Macros.typecheck("val Foo(x, y, z) = Foo(1, 'a')"))
+ println(Macros.typecheck("val Bar(x, y, z) = Foo(1, 'a')"))
+} \ No newline at end of file