summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJosh Suereth <Joshua.Suereth@gmail.com>2012-09-01 09:04:19 -0700
committerJosh Suereth <Joshua.Suereth@gmail.com>2012-09-01 09:04:19 -0700
commit37680b44f96362057c14713da7541add946706cc (patch)
tree0462823d537d22b10848c8f9b582cd43a58ff0ef /test
parentd5a5142b9858920cd9a5dbf0ca1ceebb8131aceb (diff)
parent9933140d24603e1ae4e7d3e1256db89b1ea4f46e (diff)
downloadscala-37680b44f96362057c14713da7541add946706cc.tar.gz
scala-37680b44f96362057c14713da7541add946706cc.tar.bz2
scala-37680b44f96362057c14713da7541add946706cc.zip
Merge pull request #1225 from jsuereth/fix/si-6290
Fixes SI-6290 by creating real instnaces of language features.
Diffstat (limited to 'test')
-rw-r--r--test/files/run/t6290.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/run/t6290.scala b/test/files/run/t6290.scala
new file mode 100644
index 0000000000..9d05db0d18
--- /dev/null
+++ b/test/files/run/t6290.scala
@@ -0,0 +1,4 @@
+object Test {
+ implicit val foo = language.dynamics
+ def main(args: Array[String]): Unit = ()
+}