New test, for bug 76914
[mono.git] / mcs / tests / test-478.cs
1 using System;
2 using System.Collections;
3
4 public class Position {
5 }
6
7 public class Board {
8     public enum Stone : int {
9         None = 0,
10             Empty = 1,
11             Black = 2,
12             White = 3
13     }
14
15     public Stone Get(Position p)
16     {
17         return (Stone)p;
18     }
19
20     public static void Main() {
21     }
22     
23 }
24
25
26
27
28
29