aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/classtags_contextbound.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/classtags_contextbound.scala')
-rw-r--r--tests/pending/run/classtags_contextbound.scala7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/pending/run/classtags_contextbound.scala b/tests/pending/run/classtags_contextbound.scala
deleted file mode 100644
index 1edce82a2..000000000
--- a/tests/pending/run/classtags_contextbound.scala
+++ /dev/null
@@ -1,7 +0,0 @@
-import scala.reflect.{ClassTag, classTag}
-
-object Test extends dotty.runtime.LegacyApp {
- def mkArray[T: ClassTag] = Array[T]()
- def foo[T: ClassTag] = mkArray[T]
- println(foo[Int].getClass)
-}