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: 133cae7b165a16840b66e665d141619626bfbb81 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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);
}