2005-06-05 Peter Bartok <pbartok@novell.com>
[mono.git] / mcs / errors / cs1591-4.cs
1 // Compiler options: -doc:dummy.xml -warnaserror -warn:4
2 using System;
3
4 namespace Testing
5 {
6         /// comment is here.
7         public enum Foo
8         {
9                 Foo,
10                 /// required for all enum members
11                 Bar
12         }
13 }