[xbuild] Vbc task - make error column check a little non-specific.
[mono.git] / mcs / tests / test-796.cs
1 // Compiler options: -warnaserror -warn:4
2
3 // No CS0649 warnings
4
5 using System;
6
7 [Foo (Product = "Mono")]
8 class Program
9 {
10         static void Main ()
11         {
12         }
13 }
14
15 class FooAttribute : Attribute
16 {
17         public string Product;
18
19         public FooAttribute ()
20         {
21         }
22 }