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
[build] Fix warning (#4177)
[mono-project.git]
/
mcs
/
tests
/
test-259.cs
blob
55f6beb4f12654ea9c00cdb3fa5547f1a0e3cc48
1
using
System
;
2
3
public class
Testing
4
{
5
public enum
INT
:
int
{ Zero }
6
public const
INT JPEG_SUSPENDED
= (
INT
)
0
;
7
public const
INT JPEG_HEADER_OK
= (
INT
)
1
;
8
9
// Test that we can have a null value here
10
public const
Testing testing
=
null
;
11
12
public static void
Main
()
13
{ }
14
}