From 25a98964b5109aa55b71a8a26886c59903193548 Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Thu, 6 Oct 2005 13:14:33 +0000 Subject: *** empty log message *** --- test-nsc/files/pos/imports.scala | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 test-nsc/files/pos/imports.scala (limited to 'test-nsc/files/pos/imports.scala') diff --git a/test-nsc/files/pos/imports.scala b/test-nsc/files/pos/imports.scala new file mode 100755 index 0000000000..65ea090436 --- /dev/null +++ b/test-nsc/files/pos/imports.scala @@ -0,0 +1,16 @@ +package test; + +import java.lang.{System => S} + +object test { + import S.out.{print => p, println => print} + + val foo = 1; + + p("hello"); print("world"); S.out.println("!"); + S.out.flush(); +} +object test1 { + import test._; + foo +} \ No newline at end of file -- cgit v1.2.3