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
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs1547-9.cs
blob
274c7c59b7c2377abd0be93de8e700937bf0e451
1
// CS1547: Keyword `void' cannot be used in this context
2
// Line: 11
3
4
namespace
OtherTest
5
{
6
public static class
Program
7
{
8
static void
MainD
(
object
p
)
9
{
10
if
(
p
is
String
)
11
(
void
)((
string
)
p
).
ToString
();
12
}
13
}
14
}