(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs1667-3.cs
blob2bda9ffdb828c4fb21aff7419e2302ae88566209
1 // cs1667.cs: Attribute 'Conditional' is not valid on property or event accessors. It is valid on 'class, 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;