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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs1547.cs
blob
8d354d9a57e5bafef6184141af6d5110b8f70cc0
1
// CS1547: Keyword `void' cannot be used in this context
2
// Line: 9
3
using
System
;
4
5
class
X
6
{
7
static void
Main
()
8
{
9
void
[]
a
;
10
}
11
}