From 315c097d3a72077512fa06d7c26e8ad09a8b3f66 Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Fri, 16 May 2014 14:25:39 +0200 Subject: Triage of tests t27xx-t29xx. --- tests/untried/pos/t287.scala | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 tests/untried/pos/t287.scala (limited to 'tests/untried/pos/t287.scala') diff --git a/tests/untried/pos/t287.scala b/tests/untried/pos/t287.scala deleted file mode 100644 index 8e5e8831c..000000000 --- a/tests/untried/pos/t287.scala +++ /dev/null @@ -1,12 +0,0 @@ -object testBuf { - class mystream extends java.io.BufferedOutputStream(new java.io.FileOutputStream("/dev/null")) { - def w( x:String ):Unit = { - val foo = new Array[Byte](2); - - // write( byte[] ) is defined in FilterOutputStream, the superclass of BufferedOutputStream - super.write( foo ); // error - - super.write( foo, 0, foo.length ); // this works however - } - } -} -- cgit v1.2.3