aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/t5271_2.check
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/macro/run/t5271_2.check')
-rw-r--r--tests/disabled/macro/run/t5271_2.check14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/disabled/macro/run/t5271_2.check b/tests/disabled/macro/run/t5271_2.check
new file mode 100644
index 000000000..1df88872a
--- /dev/null
+++ b/tests/disabled/macro/run/t5271_2.check
@@ -0,0 +1,14 @@
+{
+ case class C extends Product with Serializable {
+ <caseaccessor> <paramaccessor> val foo: Int = _;
+ <caseaccessor> <paramaccessor> val bar: Int = _;
+ def <init>(foo: Int, bar: Int) = {
+ super.<init>();
+ ()
+ }
+ };
+ val c = C.apply(2, 2);
+ Predef.println(c.foo.$times(c.bar))
+}
+4
+()