aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/macro-expand-nullary-generic/Macros_Test_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/macro-expand-nullary-generic/Macros_Test_2.scala')
-rw-r--r--tests/pending/run/macro-expand-nullary-generic/Macros_Test_2.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/pending/run/macro-expand-nullary-generic/Macros_Test_2.scala b/tests/pending/run/macro-expand-nullary-generic/Macros_Test_2.scala
deleted file mode 100644
index da418c63c..000000000
--- a/tests/pending/run/macro-expand-nullary-generic/Macros_Test_2.scala
+++ /dev/null
@@ -1,15 +0,0 @@
-object Macros {
- def foo1[T]: Unit = macro Impls.fooNullary[T]
- def foo2[T](): Unit = macro Impls.fooEmpty[T]
- def bar1[T](x: Int): Unit = macro Impls.barNullary[T]
- def bar2[T](x: Int)(): Unit = macro Impls.barEmpty[T]
-}
-
-object Test extends dotty.runtime.LegacyApp {
- Macros.foo1[Int]
- Macros.foo2[Int]
- Macros.foo2[Int]()
- Macros.bar1[Int](42)
- Macros.bar2[Int](42)()
- println("kkthxbai")
-} \ No newline at end of file