Updated with review feedback.
[mono.git] / mcs / errors / cs0591-2.cs
1 // CS0591: Invalid value for argument to `System.Runtime.InteropServices.GuidAttribute' attribute
2 // Line: 6
3
4 using System.Runtime.InteropServices;
5
6 [Guid ("aaa")]
7 class X {
8 static void Main () {}
9 }