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
* MSBuild.cs (Execute): Don't share target output items,
[mcs.git]
/
errors
/
cs0082-8.cs
blob
f79627e53aca7ae98c3fbea2760cd188fc34b150
1
// CS0082: A member `Test.add_XX(Test.MyEvent)' is already reserved
2
// Line: 12
3
4
public class
Test
5
{
6
public delegate void
MyEvent
();
7
public event
MyEvent XX
{
8
add
{ }
9
remove
{ }
10
}
11
12
public void
add_XX
(
MyEvent e
)
{ return; }
13
}
14