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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0716.cs
blob
48a64eb9ebcc2c251764b3625d80d0dd29ace0cf
1
// CS0716: 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
}