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-15 Jonathan Chambers <joncham@gmail.com>
[mcs.git]
/
errors
/
gcs0721.cs
blob
73f31fc2413ff458966cae995bdcbc00879e5f5b
1
// CS0721: `C': static types cannot be used as parameters
2
// Line: 6
3
4
5
static class
C
6
{
7
static void
Foo
(
this
C c
)
8
{
9
}
10
}