[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-648.cs
1 using System;
2
3 namespace ParamMismatch
4 {
5         public class TestCase
6         {
7                 public static void Main()
8                 {
9                 }
10                 
11                 public TestCase()
12                 {
13                 }
14
15                 public event EventHandler Culprit
16                 {
17                         add
18                         {
19                                 // even when this contained something, compiling would fail
20                         }
21
22                         remove
23                         {
24                                 // even when this contained something, compiling would fail
25                         }
26                 }
27                 ~TestCase()
28                 {
29                 }
30         }
31 }