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
/
gcs0663.cs
blob
62c156b9a595fe741b175eddb8006306c890d377
1
// CS0633: An overloaded method `C.Foo(string)' cannot differ on use of parameter modifiers only
2
// Line: 11
3
4
5
public static class
C
6
{
7
static void
Foo
(
this string
eType
)
8
{
9
}
10
11
static void
Foo
(
string value
)
12
{
13
}
14
}