2005-06-29 Sureshkumar T <tsureshkumar@novell.com>
[mono.git] / mcs / errors / cs0616.cs
1 // cs0616.cs: 'FakeAttribute': is not an attribute class
2 // Line: 8
3
4 class FakeAttribute {
5 }
6
7 class T {
8         [Fake]
9         static int Main() {
10                 return 0;
11         }
12 }