2005-06-29 Jonathan Chambers <jonathan.chambers@ansys.com>
[mcs.git] / errors / cs1667-3.cs
blob15bc3d4d9236db746a42a073bf2726a7aec7a841
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
4 using System;
5 using System.Diagnostics;
7 class Class1
9 public int G {
10 [Conditional("DEBUG")]
11 get {
12 return 1;