summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0582.cs
blob: ac7d6107408a60cc1834b02ecbb6abdb7c39c2e3 (plain)
1
2
3
4
5
6
7
8
// CS0582: Conditional not valid on interface members
// Line: 5

interface Interface {
        [System.Diagnostics.ConditionalAttribute("DEBUG")]
        void Method ();
}