a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
13 lines
234 B
C#
13 lines
234 B
C#
// CS0758: A partial method declaration and partial method implementation cannot differ on use of `params' modifier
|
|
// Line: 9
|
|
|
|
|
|
public partial class C
|
|
{
|
|
partial void Foo (int[] args);
|
|
|
|
partial void Foo (params int[] args)
|
|
{
|
|
}
|
|
}
|