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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs1106.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
}