15 lines
169 B
C#
15 lines
169 B
C#
|
// CS0757: A partial method `C.Foo()' implementation is already defined
|
||
|
// Line: 11
|
||
|
|
||
|
|
||
|
public partial class C
|
||
|
{
|
||
|
partial void Foo ()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
partial void Foo ()
|
||
|
{
|
||
|
}
|
||
|
}
|