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
/
gcs1106-2.cs
blob
0f2d5d16d8ea45a535b24baacad1e438a89e383d
1
// CS1106: `S<T>.Foo(this string)': Extension methods must be defined in a non-generic static class
2
// Line: 6
3
4
5
static class
S
<
T
>
6
{
7
static void
Foo
(
this string
s
)
8
{
9
}
10
}