[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0110-2.cs
1 // CS0110: The evaluation of the constant value for `E.a' involves a circular definition
2 // Line: 6
3
4 enum E
5 {
6         a = b,
7         b = c,
8         c = a
9 }