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-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0755.cs
blob
66c48f348ec549709f3c24f6365a8e0bdb8ce82b
1
// CS0755: A partial method declaration and partial method implementation must be both an extension method or neither
2
// Line: 11
3
4
5
public static partial class
C
6
{
7
static partial void
Foo
(
this string
eType
)
8
{
9
}
10
11
static partial void
Foo
(
string value
);
12
}