a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
16 lines
212 B
C#
16 lines
212 B
C#
// CS0111: A member `C.Foo()' is already defined. Rename this member or use different parameter types
|
|
// Line: 12
|
|
|
|
|
|
public partial class C
|
|
{
|
|
partial void Foo ();
|
|
}
|
|
|
|
public partial class C
|
|
{
|
|
void Foo ()
|
|
{
|
|
}
|
|
}
|