blob: f6ab59c9eee67cfd86b1d2f3334ad4223d0ee5ea (
plain)
1
2
3
4
5
6
7
8
|
// CS1689: Attribute `System.Diagnostics.ConditionalAttribute' is only valid on methods or attribute classes
// Line: 6
using System.Diagnostics;
[Conditional("DEBUG")]
public class Test {}
|