* CheckBox.cs: Do not change the status of a checkbox when there
[mono.git] / mcs / errors / cs0647.cs
1 // cs0647: Format of GUID is invalid
2 // Line: 5
3 using System.Runtime.InteropServices;
4
5 [Guid ("aaa")]
6
7 class X {
8 static void Main () {}
9 }