Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs1689.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 913ee46bdf93c82ebd25b31b7bf81437d1e6dc4c (plain)
1
2
3
4
5
6
7
8
// cs1689.cs: Attribute 'System.Diagnostics.ConditionalAttribute' is only valid on methods or attribute classes
// Line: 6

using System.Diagnostics;

[Conditional("DEBUG")]
public class Test {}