aboutsummaryrefslogtreecommitdiff
path: root/tests/pos-scala2
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-08-24 12:38:22 +0200
committerMartin Odersky <odersky@gmail.com>2016-08-26 11:13:17 +0200
commitb41cff6fa4ccc593916790364424051d9eef200d (patch)
treed2a729c5f885873d725f22f6d4cfe0786836ea59 /tests/pos-scala2
parenteb529b556f92a5ab0329899762b43eea7103ad59 (diff)
downloaddotty-b41cff6fa4ccc593916790364424051d9eef200d.tar.gz
dotty-b41cff6fa4ccc593916790364424051d9eef200d.tar.bz2
dotty-b41cff6fa4ccc593916790364424051d9eef200d.zip
Test recategorization
Diffstat (limited to 'tests/pos-scala2')
-rw-r--r--tests/pos-scala2/t7688.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/pos-scala2/t7688.scala b/tests/pos-scala2/t7688.scala
new file mode 100644
index 000000000..5a846b97e
--- /dev/null
+++ b/tests/pos-scala2/t7688.scala
@@ -0,0 +1,7 @@
+import scala.reflect.macros._
+
+class A[C <: Context with Singleton](position: C#Position)
+
+object A {
+ def apply(c: Context)(in: c.Tree): A[c.type] = new A(in.pos)
+}