[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1574-6.cs
1 // CS1574: XML comment on `Test' has cref attribute `MyDelegate(int)' that could not be resolved
2 // Line: 8
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:1
4
5 /// <summary>
6 /// <see cref="MyDelegate(int)" />
7 /// </summary>
8 public class Test {
9         /// <summary>
10         /// whatever
11         /// </summary>
12         public delegate void MyDelegate(int i);
13 }
14