1 // CS1618: Cannot create delegate with `TestClass.Show(int)' because it has a Conditional attribute
6 delegate void test_delegate (int arg
);
8 [System
.Diagnostics
.Conditional("DEBUG")]
9 public void Show (int arg
) {}
13 test_delegate D
= new test_delegate (Show
);