[#7637][Web]: This is supposed to fail prior to .NET 4.0.
[mono.git] / mcs / errors / cs0647.cs
1 // CS0647: Error during emitting `System.Runtime.InteropServices.GuidAttribute' attribute. The reason is `Invalid Guid format: aaa'
2 // Line: 6
3
4 using System.Runtime.InteropServices;
5
6 [Guid ("aaa")]
7 class X {
8 static void Main () {}
9 }