aboutsummaryrefslogtreecommitdiff
path: root/tests/pending
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending')
-rw-r--r--tests/pending/run/t5040.check1
-rw-r--r--tests/pending/run/t5040.flags1
-rw-r--r--tests/pending/run/t5040.scala11
3 files changed, 0 insertions, 13 deletions
diff --git a/tests/pending/run/t5040.check b/tests/pending/run/t5040.check
deleted file mode 100644
index 3f7b5908a..000000000
--- a/tests/pending/run/t5040.check
+++ /dev/null
@@ -1 +0,0 @@
-applyDynamic
diff --git a/tests/pending/run/t5040.flags b/tests/pending/run/t5040.flags
deleted file mode 100644
index 1141f9750..000000000
--- a/tests/pending/run/t5040.flags
+++ /dev/null
@@ -1 +0,0 @@
--language:dynamics
diff --git a/tests/pending/run/t5040.scala b/tests/pending/run/t5040.scala
deleted file mode 100644
index 6813c1b27..000000000
--- a/tests/pending/run/t5040.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-abstract class Prova2 extends Dynamic {
- def applyDynamic(m: String)(): Unit
- private def privateMethod() = println("private method")
-}
-
-object Test extends dotty.runtime.LegacyApp {
- val prova= new Prova2 {
- def applyDynamic(m: String)() = println("applyDynamic")
- }
- prova.privateMethod()
-}