From e902d4a0486a66dd0dabd727c4fcc31da2468a9c Mon Sep 17 00:00:00 2001 From: Gilles Dubochet Date: Fri, 29 Feb 2008 16:17:49 +0000 Subject: Fixed issue #586. --- test/files/pos/t0586.scala | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/files/pos/t0586.scala (limited to 'test') diff --git a/test/files/pos/t0586.scala b/test/files/pos/t0586.scala new file mode 100644 index 0000000000..86115a77af --- /dev/null +++ b/test/files/pos/t0586.scala @@ -0,0 +1,9 @@ +object RClose { + type ReflectCloseable = { def close(): Unit } + def withReflectCloseable[T <: ReflectCloseable, R](s: T)(action: T => R): R = + try { + action(s) + } finally { + s.close() + } +} \ No newline at end of file -- cgit v1.2.3