"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs1501-18.cs
blobb22ab55c406ba3e8ce2ba31e308169a788297f37
1 // CS1501: No overload for method `Bar' takes `2' arguments
2 // Line: 19
4 using System;
6 class T
8 void Foo (int arg, Action a)
12 void Foo (string title, Action a)
16 void Bar ()
18 Foo (arg: 1, a: () => {
19 Bar ("a", "b");
20 });