aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/macro-whitebox-fundep-materialization/Test_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/macro-whitebox-fundep-materialization/Test_2.scala')
-rw-r--r--tests/pending/run/macro-whitebox-fundep-materialization/Test_2.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/pending/run/macro-whitebox-fundep-materialization/Test_2.scala b/tests/pending/run/macro-whitebox-fundep-materialization/Test_2.scala
deleted file mode 100644
index 72183ba86..000000000
--- a/tests/pending/run/macro-whitebox-fundep-materialization/Test_2.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-// see the comments for macroExpand.onDelayed for an explanation of what's tested here
-object Test extends dotty.runtime.LegacyApp {
- case class Foo(i: Int, s: String, b: Boolean)
- def foo[C, L](c: C)(implicit iso: Iso[C, L]): L = iso.to(c)
-
- {
- val equiv = foo(Foo(23, "foo", true))
- def typed[T](t: => T) {}
- typed[(Int, String, Boolean)](equiv)
- println(equiv)
- }
-} \ No newline at end of file