aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t8104/Test_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t8104/Test_2.scala')
-rw-r--r--tests/pending/run/t8104/Test_2.scala19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/pending/run/t8104/Test_2.scala b/tests/pending/run/t8104/Test_2.scala
deleted file mode 100644
index 4e97cdf9d..000000000
--- a/tests/pending/run/t8104/Test_2.scala
+++ /dev/null
@@ -1,19 +0,0 @@
-trait Generic[T] { type Repr }
-object Generic {
- type Aux[T, Repr0] = Generic[T] { type Repr = Repr0 }
- import scala.language.experimental.macros
- implicit def materializeGeneric[T, Repr]: Generic.Aux[T, Repr] = macro Macros.impl[T]
-}
-
-object Test extends dotty.runtime.LegacyApp {
- case class C(x: Int, y: Int)
-
- import scala.reflect.runtime.universe._
- def reprify[T, Repr](x: T)(implicit generic: Generic.Aux[T, Repr], tag: WeakTypeTag[Repr]) = {
- println(tag)
- println(tag.tpe.typeSymbol.info)
- }
- reprify(C(40, 2))
-
- implicitly[Generic.Aux[C, (Int, Int)]]
-}