2005-12-07 Lluis Sanchez Gual <lluis@ximian.com>
[mono.git] / mcs / errors / cs1667-3.cs
1 // cs1667-3.cs: Attribute `System.Diagnostics.ConditionalAttribute' is not valid on property or event accessors. It is valid on `method' declarations only
2 // Line: 10
3
4 using System;
5 using System.Diagnostics;
6
7 class Class1 
8 {
9         public int G {
10             [Conditional("DEBUG")]
11             get {
12                     return 1;
13             }
14         }
15 }