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-03-15 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0118-9.cs
blob
b273e65b72f56e72974250b7323e0f0dca714641
1
// CS0118: `System' is a `namespace' but a `type' was expected
2
// Line: 9
3
4
public class
C
5
{
6
public object
Test
(
object
a
)
7
{
8
return
(
System
)(
a
);
9
}
10
}