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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs1547-8.cs
blob
f85783326ac0ba6ceb3305fe9ec1970d42f18c01
1
// CS1547: Keyword `void' cannot be used in this context
2
// Line: 8
3
4
class
C
5
{
6
static void
Main
()
7
{
8
bool
b
=
1
is void
;
9
}
10
}