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
* MSBuild.cs (Execute): Don't share target output items,
[mcs.git]
/
errors
/
cs0716.cs
blob
3aaa44b55ede98c63c7cde6699458d45d16af954
1
// cs0716.cs: Cannot convert to static type `StaticClass'
2
// Line: 10
3
4
static class
StaticClass
{
5
}
6
7
class
MainClass
{
8
public static void
Method
(
object
arg
)
9
{
10
((
StaticClass
)
arg
).
ToString
();
11
}
12
}