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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
test-441.cs
blob
9b6fcef2ea4f3d0c01e5088cbb8b909518a9bd70
1
// Compiler options: /warnaserror
2
3
using
System
;
4
class
Test
5
{
6
static ulong value
=
0
;
7
8
public static void
Main
()
9
{
10
if
(
value
<
9223372036854775809
)
11
Console
.
WriteLine
();
12
}
13
}
14