(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs1618.cs
blob79141dc3fa45f365828f94bb0859b8b455055974
1 // cs1618.cs: Cannot create delegate with 'TestClass.Show(int)' because it has a Conditional attribute
2 // Line: 13
4 class TestClass
6 delegate void test_delegate (int arg);
8 [System.Diagnostics.Conditional("DEBUG")]
9 public void Show (int arg) {}
11 public TestClass ()
13 test_delegate D = new test_delegate (Show);