summaryrefslogtreecommitdiff
path: root/test/pending/run/t5726a.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t5726a.scala')
-rw-r--r--test/pending/run/t5726a.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/pending/run/t5726a.scala b/test/pending/run/t5726a.scala
deleted file mode 100644
index 24d828a159..0000000000
--- a/test/pending/run/t5726a.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-import language.dynamics
-
-class DynamicTest extends Dynamic {
- def selectDynamic(name: String) = s"value of $name"
- def updateDynamic(name: String)(value: Any) {
- println(s"You have just updated property '$name' with value: $value")
- }
-}
-
-object MyApp extends App {
- def testing() {
- val test = new DynamicTest
- test.firstName = "John"
- }
-
- testing()
-} \ No newline at end of file