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
/
cs1635.cs
blob
d9dc70a38952a424ac811c023e1d1c3974f54d52
1
// CS1635: Cannot restore warning `CS0219' because it was disabled globally
2
// Line: 11
3
// Compiler options: -nowarn:219 -warnaserror
4
5
class
C
6
{
7
public static void
Main
()
8
{
9
#pragma warning disable 219
10
int
o
=
4
;
11
#pragma warning restore 219
12
}
13
}