2005-06-29 Sureshkumar T <tsureshkumar@novell.com>
[mono.git] / mcs / errors / cs1591-9.cs
1 // cs1591.cs: Missing XML comment for publicly visible type or member 'Testing.Test.MyEvent'
2 // Line: 14
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:4
4
5 using System;
6
7 namespace Testing
8 {
9         /// <summary>
10         /// description for class Test
11         /// </summary>
12         public class Test
13         {
14                 public event EventHandler MyEvent;
15         }
16 }