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
2010-03-02 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
errors
/
cs1635.cs
blob
fe89378edae938798b3cb80e0429cfcbb58d12af
1
// cs1635.cs: 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
}