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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0220-2.cs
blob
d7b1f6a980eb577b11f63969e8dde337c58627fc
1
// CS0220: The operation overflows at compile time in checked mode
2
// Line: 7
3
4
public class
MainClass
{
5
static void
Main
() {
6
int
a
= -
int
.
MinValue
;
7
}
8
}
9
10