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
[corlib] Fix a few NSLogWriter issues. (#13799)
[mono-project.git]
/
mcs
/
tests
/
test-static-using-13.cs
blob
6760539180003bf909c486c0e42c163b825a2250
1
using
System
;
2
using static
TestClass
;
3
4
internal class
Program
5
{
6
public static void
Main
(
string
[]
args
)
7
{
8
var
res
=
Directions
.
Up
;
9
}
10
}
11
12
public enum
Directions
13
{
14
Up
,
15
NotUp
,
16
}
17
18
public static class
TestClass
19
{
20
public static int
Directions
;
21
}