2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1591-11.cs
blob1463913b8ab1cd93b3a874a8349e2c095d1e652e
1 // cs1591-11.cs: Missing XML comment for publicly visible type or member `Testing.IFoo.Foo()'
2 // Line: 14
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:4
5 using System;
7 namespace Testing
9 /// <summary>
10 /// description for interface IFoo
11 /// </summary>
12 public interface IFoo
14 void Foo ();