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
/
cs0078.cs
blob
0a27ca8ee46ec791ec5c823728f740bdc77373f7
1
// CS0078: The `l' suffix is easily confused with the digit `1' (use `L' for clarity)
2
// Line: 12
3
// Compiler options: -warnaserror -warn:4
4
5
using
System
;
6
7
class
ErrorCS0078
{
8
public static void
Main
() {
9
long
a
=
1l
;
10
}
11
}
12