summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2008-07-29 12:14:57 +0000
committerMartin Odersky <odersky@gmail.com>2008-07-29 12:14:57 +0000
commitbb2c7676f51e6074e41a9e77eb413cbf027a6479 (patch)
tree9c2e05a951032a0da7b319c91091884443044947 /test
parentc925964406607ca53df6d7fcba2ad51ae084655f (diff)
downloadscala-bb2c7676f51e6074e41a9e77eb413cbf027a6479.tar.gz
scala-bb2c7676f51e6074e41a9e77eb413cbf027a6479.tar.bz2
scala-bb2c7676f51e6074e41a9e77eb413cbf027a6479.zip
fixed Signature generation
Diffstat (limited to 'test')
-rw-r--r--test/files/neg/t1033.check4
-rw-r--r--test/files/neg/t1033.scala13
-rwxr-xr-xtest/pending/pos/sig/sigs.java5
-rwxr-xr-xtest/pending/pos/sig/sigs.scala6
4 files changed, 25 insertions, 3 deletions
diff --git a/test/files/neg/t1033.check b/test/files/neg/t1033.check
new file mode 100644
index 0000000000..16e799264b
--- /dev/null
+++ b/test/files/neg/t1033.check
@@ -0,0 +1,4 @@
+t1033.scala:5: error: return outside method definition
+ return 10
+ ^
+one error found
diff --git a/test/files/neg/t1033.scala b/test/files/neg/t1033.scala
new file mode 100644
index 0000000000..3aed8bb11a
--- /dev/null
+++ b/test/files/neg/t1033.scala
@@ -0,0 +1,13 @@
+object A {
+ def f :Int = {
+ class B {
+ println("B")
+ return 10
+ }
+ new B
+ 20
+ }
+ def main(args: Array[String]) {
+ f
+ }
+}
diff --git a/test/pending/pos/sig/sigs.java b/test/pending/pos/sig/sigs.java
index 0fc0c7008f..ddf8ec45b0 100755
--- a/test/pending/pos/sig/sigs.java
+++ b/test/pending/pos/sig/sigs.java
@@ -1,5 +1,6 @@
package test;
class Test extends T {
- Object y = bar("abc");
+ Inner i = new Inner();
String x = foo("abc");
-} \ No newline at end of file
+ String y = i.bar("abc");
+}
diff --git a/test/pending/pos/sig/sigs.scala b/test/pending/pos/sig/sigs.scala
index 4579f225d9..72a293d0e6 100755
--- a/test/pending/pos/sig/sigs.scala
+++ b/test/pending/pos/sig/sigs.scala
@@ -1,6 +1,10 @@
package test
class T {
- def foo[T](x: T): T = x
+ def foo[T <: String](x: T): T = x
def bar[T](x: T): T = x
+ class Inner {
+ def foo[T](x: T): T = x
+ def bar[T](x: T): T = x
+ }
}