2005-06-29 Sureshkumar T <tsureshkumar@novell.com>
[mono.git] / mcs / errors / cs1667-3.cs
1 // cs1667.cs: Attribute 'Conditional' is not valid on property or event accessors. It is valid on 'class, 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 }