aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/checkInstantiable.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/checkInstantiable.scala')
-rw-r--r--tests/pos/checkInstantiable.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/pos/checkInstantiable.scala b/tests/pos/checkInstantiable.scala
new file mode 100644
index 000000000..c8b166b1e
--- /dev/null
+++ b/tests/pos/checkInstantiable.scala
@@ -0,0 +1,5 @@
+// check instantiable of parameterized self type
+class LS[T] { self: LS[T] => }
+object Test {
+ new LS[Int]
+}