repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0102-10.cs
blob
2d2a62a21de75cf7074b9d5ee2a0897b7487e993
1
// CS0102: The type `SampleClass' already contains a definition for `add_XX'
2
// Line: 13
3
4
public class
SampleClass
{
5
public delegate void
MyEvent
();
6
public event
MyEvent XX
{
7
add
{ }
8
remove
{ }
9
}
10
11
bool
add_XX
;
12
}