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 | 34 ---------------------------------- test/files/pos/context.scala.disabled | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 34 deletions(-) delete mode 100644 test/files/pos/context.scala create mode 100644 test/files/pos/context.scala.disabled (limited to 'test') diff --git a/test/files/pos/context.scala b/test/files/pos/context.scala deleted file mode 100644 index 327f3261be..0000000000 --- a/test/files/pos/context.scala +++ /dev/null @@ -1,34 +0,0 @@ -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; - } - } -} 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