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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs0663-6.cs
blob
44b3cc30efdc22b89d136f07cf90fd77c687ef18
1
// CS0633: 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
}