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-02-27 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0721.cs
blob
ee0a06b3aeb8468377e934d9cb6c57b8a6584aa5
1
// cs0721.cs: `StaticClass': static types cannot be used as parameters
2
// Line: 8
3
4
static class
StaticClass
{
5
}
6
7
class
MainClass
{
8
public static void
Method
(
StaticClass arg
)
9
{
10
}
11
}