summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0591-2.cs
blob: 31df0431f62f502d1fded019301dcf0ce221eb70 (plain)
1
2
3
4
5
6
7
8
9
// CS0591: Invalid value for argument to `System.Runtime.InteropServices.GuidAttribute' attribute
// Line: 6

using System.Runtime.InteropServices;

[Guid ("aaa")]
class X {
static void Main () {}
}