From a83586a4815acd35df0801ed0e9f067e113c8664 Mon Sep 17 00:00:00 2001 From: Aleksandar Prokopec Date: Mon, 18 Jun 2012 19:33:06 +0200 Subject: Fix SI-4541. Catch type errors when duplicating trees. In this case, to access a protected member from a specialized class is an error, so we would have to make the member public anyway. Better it is then to report an error and have the user make the field public explicitly. Review by @dragos. --- test/files/neg/t4541b.check | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/files/neg/t4541b.check (limited to 'test/files/neg/t4541b.check') diff --git a/test/files/neg/t4541b.check b/test/files/neg/t4541b.check new file mode 100644 index 0000000000..54d9c3d1ee --- /dev/null +++ b/test/files/neg/t4541b.check @@ -0,0 +1,7 @@ +t4541b.scala:13: error: scala.reflect.internal.Types$TypeError: variable data in class SparseArray cannot be accessed in SparseArray[Int] + Access to protected method data not permitted because + prefix type SparseArray[Int] does not conform to + class SparseArray$mcI$sp where the access take place + use(that.data.clone) + ^ +one error found \ No newline at end of file -- cgit v1.2.3