From 5a2828c149d3c82c215a34e8586639ffea12a903 Mon Sep 17 00:00:00 2001 From: Jason Zaugg Date: Sun, 27 Jan 2013 18:48:57 +0100 Subject: A test case to guide the eventual fix for SI-6601. This demonstrates the need for the reversion in the previous commit. --- test/files/pos/t6601/PrivateValueClass_1.scala | 1 + test/files/pos/t6601/UsePrivateValueClass_2.scala | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 test/files/pos/t6601/PrivateValueClass_1.scala create mode 100644 test/files/pos/t6601/UsePrivateValueClass_2.scala (limited to 'test/files') diff --git a/test/files/pos/t6601/PrivateValueClass_1.scala b/test/files/pos/t6601/PrivateValueClass_1.scala new file mode 100644 index 0000000000..85c3687137 --- /dev/null +++ b/test/files/pos/t6601/PrivateValueClass_1.scala @@ -0,0 +1 @@ +class V private (val a: Any) extends AnyVal \ No newline at end of file diff --git a/test/files/pos/t6601/UsePrivateValueClass_2.scala b/test/files/pos/t6601/UsePrivateValueClass_2.scala new file mode 100644 index 0000000000..461b8397b2 --- /dev/null +++ b/test/files/pos/t6601/UsePrivateValueClass_2.scala @@ -0,0 +1,10 @@ +object Test { + // After the first attempt to make seprately compiled value + // classes respect the privacy of constructors, we got: + // + // exception when typing v.a().==(v.a())/class scala.reflect.internal.Trees$Apply + // constructor V in class V cannot be accessed in object Test in file test/files/pos/t6601/UsePrivateValueClass_2.scala + // scala.reflect.internal.Types$TypeError: constructor V in class V cannot be accessed in object Test + def foo(v: V) = v.a == v.a + def bar(v: V) = v == v +} -- cgit v1.2.3