summaryrefslogtreecommitdiff
path: root/test/pending
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2007-11-21 14:28:19 +0000
committerIulian Dragos <jaguarul@gmail.com>2007-11-21 14:28:19 +0000
commite32400681a1370b5279afdae3a5501311a6bc340 (patch)
tree153114fe793141a0a7cab4025de7864236d6a27b /test/pending
parent1bdf2c4ebf0a863756192d4879102710e839fec2 (diff)
downloadscala-e32400681a1370b5279afdae3a5501311a6bc340.tar.gz
scala-e32400681a1370b5279afdae3a5501311a6bc340.tar.bz2
scala-e32400681a1370b5279afdae3a5501311a6bc340.zip
Fixed ticket #10
Diffstat (limited to 'test/pending')
-rw-r--r--test/pending/pos/t010/Presentations.scala10
-rw-r--r--test/pending/pos/t010/PresentationsX.scala8
2 files changed, 0 insertions, 18 deletions
diff --git a/test/pending/pos/t010/Presentations.scala b/test/pending/pos/t010/Presentations.scala
deleted file mode 100644
index ee2d94162f..0000000000
--- a/test/pending/pos/t010/Presentations.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-package pkg1
-trait Presentations {
- trait ProjectImpl {
- trait FileImpl
- protected def lockTyper[T](f : => T) = {
- if (this == null) None
- else Some(f)
- }
- }
-}
diff --git a/test/pending/pos/t010/PresentationsX.scala b/test/pending/pos/t010/PresentationsX.scala
deleted file mode 100644
index 6d6c5bf504..0000000000
--- a/test/pending/pos/t010/PresentationsX.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-package pkg2
-trait PresentationsX extends pkg1.Presentations {
- trait ProjectImpl extends super.ProjectImpl {
- trait FileImpl extends super.FileImpl {
- lockTyper(Console.println)
- }
- }
-}