[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1584.cs
1 // CS1584: XML comment on `Test' has syntactically incorrect cref attribute `operator foo(int,Test)'
2 // Line: 7
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:1
4
5 using System;
6 /// <seealso cref="operator foo(int,Test)"/>
7 public class Test
8 {
9 }