summaryrefslogtreecommitdiff
path: root/test/pending/pos/sig/sigs.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2008-07-29 10:20:51 +0000
committerMartin Odersky <odersky@gmail.com>2008-07-29 10:20:51 +0000
commitc925964406607ca53df6d7fcba2ad51ae084655f (patch)
tree02d77f977d5a83c7e8d32b1098a88bc0de60e6b2 /test/pending/pos/sig/sigs.scala
parentf6974416057ead15f0903bd4da5b1ccf5f423a84 (diff)
downloadscala-c925964406607ca53df6d7fcba2ad51ae084655f.tar.gz
scala-c925964406607ca53df6d7fcba2ad51ae084655f.tar.bz2
scala-c925964406607ca53df6d7fcba2ad51ae084655f.zip
experimenting with Signature attribute
Diffstat (limited to 'test/pending/pos/sig/sigs.scala')
-rwxr-xr-xtest/pending/pos/sig/sigs.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/pending/pos/sig/sigs.scala b/test/pending/pos/sig/sigs.scala
new file mode 100755
index 0000000000..4579f225d9
--- /dev/null
+++ b/test/pending/pos/sig/sigs.scala
@@ -0,0 +1,6 @@
+package test
+class T {
+ def foo[T](x: T): T = x
+ def bar[T](x: T): T = x
+}
+