2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-648.cs
blob56ec4c8882ffc6221e871c5a9e7a26a1188e7024
1 using System;
3 namespace ParamMismatch
5 public class TestCase
7 public static void Main()
11 public TestCase()
15 public event EventHandler Culprit
17 add
19 // even when this contained something, compiling would fail
22 remove
24 // even when this contained something, compiling would fail
27 ~TestCase()