New test, for bug 76914
authorMiguel de Icaza <miguel@gnome.org>
Wed, 14 Dec 2005 16:19:29 +0000 (16:19 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Wed, 14 Dec 2005 16:19:29 +0000 (16:19 -0000)
svn path=/trunk/mcs/; revision=54367

mcs/tests/test-478.cs [new file with mode: 0644]

diff --git a/mcs/tests/test-478.cs b/mcs/tests/test-478.cs
new file mode 100644 (file)
index 0000000..204eac4
--- /dev/null
@@ -0,0 +1,29 @@
+using System;
+using System.Collections;
+
+public class Position {
+}
+
+public class Board {
+    public enum Stone : int {
+       None = 0,
+           Empty = 1,
+           Black = 2,
+           White = 3
+    }
+
+    public Stone Get(Position p)
+    {
+       return (Stone)p;
+    }
+
+    public static void Main() {
+    }
+    
+}
+
+
+
+
+
+