[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1591-3.cs
1 // CS1591: Missing XML comment for publicly visible type or member `Testing.Foo'
2 // Line: 12
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:4
4
5 using System;
6
7 namespace Testing
8 {
9         public enum Foo
10         {
11         }
12 }