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
2010-03-07 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
errors
/
gcs1106.cs
blob
5786130ab4cb01634e82280f69e1f2ead3a9e20d
1
// CS1106: `S.Foo(this string)': Extension methods must be defined in a non-generic static class
2
// Line: 6
3
4
5
class
S
6
{
7
static void
Foo
(
this string
s
)
8
{
9
}
10
}