Updated.
authorMartin Baulig <martin@novell.com>
Tue, 28 Nov 2006 14:26:58 +0000 (14:26 -0000)
committerMartin Baulig <martin@novell.com>
Tue, 28 Nov 2006 14:26:58 +0000 (14:26 -0000)
svn path=/branches/martin/anonymous-methods2/work/; revision=68583

mcs/work/known-issues
mcs/work/peverify.sh
mcs/work/test-martin-5.cs

index f414681fa8ba3d913951643a102f5c2b01c85505..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,2 +0,0 @@
-test-martin-5.cs
-test-martin-7.cs
index 88727bd3150671a25d9f07febcdd42f1fdebdd70..7ecf67250b199e4a4f2061a778fd91fc36aa8a47 100755 (executable)
@@ -1,3 +1,3 @@
 #!/bin/bash
 
-for file in $*; do PEVerify $file ; done
+for file in $*; do PEVerify /NOLOGO $file ; done
index e77c876f784fa3c4c168f068eac5260fc6074f50..432501e0df5194d3975b03975698ae7e9e189bf0 100755 (executable)
@@ -1,6 +1,9 @@
 using System;
 
-public delegate void Foo<R> (R r);
+public delegate void Foo<V> (V v);
+
+public delegate void Bar<W> (W w);
+
 
 class Test<T>
 {
@@ -8,7 +11,7 @@ class Test<T>
        {
                Foo<long> foo = delegate (long r) {
                        Console.WriteLine (r);
-                       Foo<T> bar = delegate (T x) {
+                       Bar<T> bar = delegate (T x) {
                                Console.WriteLine (r);
                                Console.WriteLine (t);
                                Console.WriteLine (s);
@@ -24,5 +27,6 @@ class X
 {
        static void Main ()
        {
+               Test<string>.Hello ("World", 3.1415F);
        }
 }