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
2007-03-09 Chris Toshok <toshok@ximian.com>
[mcs.git]
/
errors
/
cs1536.cs
blob
f1305beabead48b0282eb7b71353b22b5ad9f9b0
1
// CS1536: Invalid parameter type 'void'
2
// Line: 7
3
using
System
;
4
5
class
X
6
{
7
void
Test
(
void
a
)
8
{ }
9
10
static void
Main
()
11
{
12
}
13
}