summaryrefslogtreecommitdiff
path: root/test/files/pos/scoping2.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2004-01-07 15:28:48 +0000
committerMartin Odersky <odersky@gmail.com>2004-01-07 15:28:48 +0000
commit836f5fbd907fe00bd9bd3849f1d41b13c2afd53a (patch)
treeceda286a11d8f97234bb77634f8e21f23a795433 /test/files/pos/scoping2.scala
parentdcac982fd6aefe45c6e91cb582044c54e40dee47 (diff)
downloadscala-836f5fbd907fe00bd9bd3849f1d41b13c2afd53a.tar.gz
scala-836f5fbd907fe00bd9bd3849f1d41b13c2afd53a.tar.bz2
scala-836f5fbd907fe00bd9bd3849f1d41b13c2afd53a.zip
*** empty log message ***
Diffstat (limited to 'test/files/pos/scoping2.scala')
-rw-r--r--test/files/pos/scoping2.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/scoping2.scala b/test/files/pos/scoping2.scala
index 8fcd71bb8b..39f3ef5f0e 100644
--- a/test/files/pos/scoping2.scala
+++ b/test/files/pos/scoping2.scala
@@ -7,7 +7,7 @@ object That {
type T <: J;
trait J {}
}
- type C = A with B {
+ trait C extends A with B {
type T <: I with J;
}
}