Merge pull request #4845 from lambdageek/dev-coop-delegates
[mono.git] / mcs / errors / cs1574-9.cs
1 // CS1574: XML comment on `Foo' has cref attribute `Dispatch()' that could not be resolved
2 // Line: 8
3 // Compiler options: -doc:dummy.xml -warnaserror
4
5 /// I am delegate, without parens
6 public delegate void Dispatch ();
7
8 /// <see cref="Dispatch()" />
9 public class Foo
10 {
11 }