summaryrefslogtreecommitdiff
path: root/test/files/neg/quasiquotes-unliftable-not-found.scala
diff options
context:
space:
mode:
authorDen Shabalin <den.shabalin@gmail.com>2013-12-09 17:29:48 +0100
committerDen Shabalin <den.shabalin@gmail.com>2013-12-10 16:54:55 +0100
commit13aa2975bb8437ccdd597020073ee2e52d079f2d (patch)
tree99ab6a922b7f961475861e0d7e378169607669a4 /test/files/neg/quasiquotes-unliftable-not-found.scala
parentc9cd5eeb014e188a6ad1db7375dabc76baf53378 (diff)
downloadscala-13aa2975bb8437ccdd597020073ee2e52d079f2d.tar.gz
scala-13aa2975bb8437ccdd597020073ee2e52d079f2d.tar.bz2
scala-13aa2975bb8437ccdd597020073ee2e52d079f2d.zip
Test unliftable not found scenario
Diffstat (limited to 'test/files/neg/quasiquotes-unliftable-not-found.scala')
-rw-r--r--test/files/neg/quasiquotes-unliftable-not-found.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/files/neg/quasiquotes-unliftable-not-found.scala b/test/files/neg/quasiquotes-unliftable-not-found.scala
new file mode 100644
index 0000000000..6a5efae43b
--- /dev/null
+++ b/test/files/neg/quasiquotes-unliftable-not-found.scala
@@ -0,0 +1,5 @@
+object Test extends App {
+ import scala.reflect.runtime.universe._
+ class C
+ val q"${c: C}" = q"()"
+} \ No newline at end of file