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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0431-2.cs
blob
0f449237e54d1756346ae94a8031df402bf79ff5
1
// CS0431: Alias `A' cannot be used with `::' since it denotes a type. Consider replacing `::' with `.'
2
// Line: 10
3
4
using
A
=
Test
;
5
6
class
Test
7
{
8
static void
Main
()
9
{
10
A
::
P p
;
11
}
12
}