Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[mono.git] / mcs / errors / cs4024.cs
1 // CS4024: The CallerLineNumberAttribute applied to parameter `x' will have no effect because it applies to a member that is used in context that do not allow optional arguments
2 // Line: 14
3 // Compiler options: -warnaserror
4
5 using System.Runtime.CompilerServices;
6
7 partial class D
8 {
9         partial void Foo (int x = 2);
10 }
11
12 partial class D
13 {
14         partial void Foo ([CallerLineNumber] int x)
15         {
16         }
17 }