2004-05-18 Marek Safar <marek.safar@seznam.cz>
[mono.git] / mcs / errors / cs0657-15.cs
1 // cs0657.cs : 'param' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are 'event, property'
2 // Line : 8
3
4 using System;
5
6 class C
7 {
8     [param: Obsolete]
9     event ResolveEventHandler field { 
10         add {}
11         remove {}
12     }
13 }