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