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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0574.cs
blob
ce39657516f0c5ceefc387f0117935822ca4265d
1
// CS0574: Name of destructor must match name of class
2
// Line: 6
3
4
class
X
{
5
6
~
Y
()
7
{
8
}
9
10
static void
Main
()
11
{
12
}
13
}