aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg/t7501/t7501_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/neg/t7501/t7501_1.scala')
-rw-r--r--tests/untried/neg/t7501/t7501_1.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/untried/neg/t7501/t7501_1.scala b/tests/untried/neg/t7501/t7501_1.scala
new file mode 100644
index 000000000..323c32762
--- /dev/null
+++ b/tests/untried/neg/t7501/t7501_1.scala
@@ -0,0 +1,12 @@
+object Test2 {
+ def test[X](name: String) = 12
+}
+class strangeTest(x: Int) extends scala.annotation.StaticAnnotation
+
+trait A {
+ // When picking the type of `test`, the value parameter
+ // `x` was pickled with the owner `trait A`. On unpickling,
+ // it was taken to be a member!
+ @strangeTest(Test2.test("test"))
+ def test(x: String): Unit
+}