Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2005-12-14 21:48:57 +0300
committerMiguel de Icaza <miguel@gnome.org>2005-12-14 21:48:57 +0300
commit18bb6c3574598ac3c4f0207f8d8c8d83acc004d9 (patch)
tree2137c96648401dc150e86eef9b8c0789361f2835 /mcs/tests/test-478.cs
parentd95c9b8a00c9cce0ead24e734ee8aae462578315 (diff)
oops
svn path=/trunk/mcs/; revision=54386
Diffstat (limited to 'mcs/tests/test-478.cs')
-rw-r--r--mcs/tests/test-478.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/mcs/tests/test-478.cs b/mcs/tests/test-478.cs
deleted file mode 100644
index 204eac4dd88..00000000000
--- a/mcs/tests/test-478.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-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() {
- }
-
-}
-
-
-
-
-
-