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
Add Mono.Runtime::GetNativeStackTrace method to make the new backtracing facility...
[mono-project.git]
/
mcs
/
tests
/
gtest-390.cs
blob
d5dc82bc0b7dead1392fb2e5123ddb67454d4716
1
using
System
;
2
3
class
Program
4
{
5
static int
Main
()
6
{
7
Error error
=
Error
.
FILE_NOT_FOUND
;
8
return
(
error
==
null
) ?
1
:
0
;
9
}
10
}
11
12
enum
Error
13
{
14
FILE_NOT_FOUND
15
}
16