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-03-15 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
gcs1644.cs
blob
d498b30e78fb603a4d3107b5c0a03e7090b3411e
1
// CS1644: Feature `extension methods' cannot be used because it is not part of the C# 2.0 language specification
2
// Line: 17
3
// Compiler options: -langversion:ISO-2
4
5
static class
Extensions
6
{
7
static string
Foo
(
string
s
,
this bool
b
,
int
i
)
8
{
9
return
s
;
10
}
11
}