summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1591-5.cs
blob: d0c4088359e96a6e264f664958d11959786f4d88 (plain)
1
2
3
4
5
6
7
8
9
10
// CS1591: Missing XML comment for publicly visible type or member `Testing.MyDelegate'
// Line: 9
// Compiler options: -doc:dummy.xml -warnaserror -warn:4

using System;

namespace Testing
{
	public delegate void MyDelegate (object o, EventArgs e);
}