Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1574-9.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb90b5e353295bd2aebd4c85a13e9d5686e8fccc (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs1574-8.cs : XML comment on `Foo' has cref attribute `Dispatch()' that could not be resolved
// Line: 8
// Compiler options: -doc:dummy.xml -warnaserror

/// I am delegate, without parens
public delegate void Dispatch ();

/// <see cref="Dispatch()" />
public class Foo
{
}