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

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

/// <summary>
/// <see cref="MyDelegate(int)" />
/// </summary>
public class Test {
        /// <summary>
        /// whatever
        /// </summary>
        public delegate void MyDelegate(int i);
}