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-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs1105.cs
blob
8051dcc10ff4d683ad831a061d382f5dd7e1200c
1
// CS1105: `S.Foo(this int?)': Extension methods must be declared static
2
// Line: 6
3
4
5
static class
S
6
{
7
void
Foo
(
this int
?
s
)
8
{
9
}
10
}