summaryrefslogtreecommitdiff
path: root/test/files/pos/typevar-in-prefix.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/typevar-in-prefix.scala')
-rw-r--r--test/files/pos/typevar-in-prefix.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/files/pos/typevar-in-prefix.scala b/test/files/pos/typevar-in-prefix.scala
new file mode 100644
index 0000000000..929648b789
--- /dev/null
+++ b/test/files/pos/typevar-in-prefix.scala
@@ -0,0 +1,9 @@
+trait Test1 {
+ abstract class Setting
+ def Bool: Setting
+
+ class C[T <: Setting](val s: T)
+ val setting1 = null.asInstanceOf[_1.s.type forSome { val _1: C[Setting] }]
+ // the derived accessor for this val was not using an inferred type, as was
+ // the intention of the implementation in MethodSynthesis.
+}