repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs1547.cs
blob
62c7846b1bebe0238fb3232a4546a59830afdab9
1
// CS1547: Keyword `void' cannot be used in this context
2
// Line: 10
3
class
Foo
<
T
>
4
{ }
5
6
class
X
7
{
8
static void
Main
()
9
{
10
Foo
<
void
>
foo
;
11
}
12
}