repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
cosmetic
[mcs.git]
/
tests
/
test-648.cs
blob
56ec4c8882ffc6221e871c5a9e7a26a1188e7024
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
}