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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
gcs1109.cs
blob
a3a3863d78a0b1f7f006653efbb5ea703f9e7ef0
1
// CS1109: `C.S.Foo(this string)': Extension methods cannot be defined in a nested class
2
// Line: 8
3
4
class
C
5
{
6
static class
S
7
{
8
static void
Foo
(
this string
s
)
9
{
10
}
11
}
12
}