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
/
cs0031-6.cs
blob
1ad5834ad93483680d59e75e04c96005f5f830ef
1
// CS0031: Constant value `999999999999999' cannot be converted to a `int'
2
// Line: 9
3
4
class
X
5
{
6
public static void
Main
()
7
{
8
int
i
=
3
;
9
i
+=
999999999999999
;
10
}
11
}
12