Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0758.cs
1 // CS0758: A partial method declaration and partial method implementation cannot differ on use of `params' modifier
2 // Line: 9
3
4
5 public partial class C
6 {
7         partial void Foo (int[] args);
8         
9         partial void Foo (params int[] args)
10         {
11         }
12 }