From 10830eaae2955766378369b8d1bcc0e6963b9b7f Mon Sep 17 00:00:00 2001 From: Antonio Cunei Date: Fri, 15 May 2009 15:44:54 +0000 Subject: 1.4-related cleanup and reorganization. Removed a bunch of now useless 1.4 code, merged back jvm5-specific partest tests into the general jvm tests, documentation updates. --- test/files/pos/t1711/Seq.scala | 12 ++++++++++++ test/files/pos/t1711/Test.java | 6 ++++++ 2 files changed, 18 insertions(+) create mode 100644 test/files/pos/t1711/Seq.scala create mode 100644 test/files/pos/t1711/Test.java (limited to 'test/files/pos/t1711') diff --git a/test/files/pos/t1711/Seq.scala b/test/files/pos/t1711/Seq.scala new file mode 100644 index 0000000000..c18f05cd73 --- /dev/null +++ b/test/files/pos/t1711/Seq.scala @@ -0,0 +1,12 @@ +package com + +object Sequence { + + def filteringFunction[V](filter: V => Boolean): List[V] => List[V] = { + def include(v: V) = + filter(v) + (l: List[V]) => l.filter(include) + } + +} + diff --git a/test/files/pos/t1711/Test.java b/test/files/pos/t1711/Test.java new file mode 100644 index 0000000000..5ec0f2297c --- /dev/null +++ b/test/files/pos/t1711/Test.java @@ -0,0 +1,6 @@ +import com.Sequence; + +public class Test { + void foo() { + } +} -- cgit v1.2.3