[w32file] Remove dead code
[mono.git] / mcs / errors / cs1591.cs
1 // CS1591: Missing XML comment for publicly visible type or member `Testing.TestClass'
2 // Line: 9
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:4
4
5 using System;
6
7 namespace Testing
8 {
9         public class TestClass
10         {
11         }
12 }
13