From 3ba2f2b49e0635255bbb40958e05cc5dccde0424 Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Fri, 20 Jan 2006 15:50:55 +0000 Subject: --- test/files/pos/context.scala.disabled | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 test/files/pos/context.scala.disabled (limited to 'test/files/pos/context.scala.disabled') diff --git a/test/files/pos/context.scala.disabled b/test/files/pos/context.scala.disabled new file mode 100644 index 0000000000..575df9a708 --- /dev/null +++ b/test/files/pos/context.scala.disabled @@ -0,0 +1,34 @@ +class Context { + object symwrap extends SymbolWrapper { + val context: Context.this.type = Context.this + } + object typewrap extends TypeWrapper { + val context: Context.this.type = Context.this + } + object symbols extends symwrap.Symbols; + object types extends typewrap.Types; +} + +abstract class SymbolWrapper { + val context: Context; + import context._; + + class Symbols requires context.symbols.type { + abstract class Symbol { + def typ: types.Type; + def sym: Symbol = typ.sym; + } + } +} + +abstract class TypeWrapper { + val context: Context; + import context._; + + class Types requires context.types.type { + abstract class Type { + def sym: symbols.Symbol; + def typ: Type = sym.typ; + } + } +} -- cgit v1.2.3