summaryrefslogtreecommitdiff
path: root/test/files/presentation/t7678/src/TypeTag.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/presentation/t7678/src/TypeTag.scala')
-rw-r--r--test/files/presentation/t7678/src/TypeTag.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/files/presentation/t7678/src/TypeTag.scala b/test/files/presentation/t7678/src/TypeTag.scala
new file mode 100644
index 0000000000..0b222f8851
--- /dev/null
+++ b/test/files/presentation/t7678/src/TypeTag.scala
@@ -0,0 +1,9 @@
+package test
+
+object Test {
+ import scala.reflect.runtime.{ universe => ru }
+ def getTypeTag(implicit tag: ru.TypeTag[Int] ) = ()
+ locally {
+ getTypeTag/*?*/
+ }
+}