aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/macro-bundle-whitebox-use-raw/Test_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/macro-bundle-whitebox-use-raw/Test_2.scala')
-rw-r--r--tests/pending/run/macro-bundle-whitebox-use-raw/Test_2.scala19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/pending/run/macro-bundle-whitebox-use-raw/Test_2.scala b/tests/pending/run/macro-bundle-whitebox-use-raw/Test_2.scala
deleted file mode 100644
index b28ebfd71..000000000
--- a/tests/pending/run/macro-bundle-whitebox-use-raw/Test_2.scala
+++ /dev/null
@@ -1,19 +0,0 @@
-object Test extends dotty.runtime.LegacyApp {
- println(ReturnTypeRefinement.foo.x)
-
- case class Foo(i: Int, s: String, b: Boolean)
- def foo[C, L](c: C)(implicit iso: FundepMaterialization[C, L]): L = iso.to(c)
- locally {
- val equiv = foo(Foo(23, "foo", true))
- def typed[T](t: => T) {}
- typed[(Int, String, Boolean)](equiv)
- println(equiv)
- }
-
- println(implicitly[DynamicMaterialization[C1]])
- println(implicitly[DynamicMaterialization[C2]])
-
- 42 match {
- case ExtractorMacro(x) => println(x)
- }
-}