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 #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
test-150.cs
blob
c81aff38239eff9566db2bed8b021030ea5dc878
1
using
System
;
2
class
T
{
3
//
4
// Tests that the following compiles
5
6
uint
bar
= (
uint
)
int
.
MaxValue
+
1
;
7
8
public static int
Main
() {
9
if
(
Int32
.
MinValue
==
0x80000000
)
10
return
1
;
11
12
13
return
0
;
14
}
15
}