[build] Fix warning (#4177)
[mono-project.git] / mcs / tests / test-named-08.cs
blob6d25be4ed4e008eb3a9e66f40d60d2ef32a5f93e
1 using System;
4 class C
6 static int Foo (string packageId, int version)
8 return Foo (packageId, version, ignoreDependencies: false, allowPrereleaseVersions: false);
11 static int Foo (string packageId, int version, bool ignoreDependencies, bool allowPrereleaseVersions)
13 return 1;
16 static int Foo (double package, bool ignoreDependencies, bool allowPrereleaseVersions, bool ignoreWalkInfo)
18 return 2;
21 public static int Main ()
23 if (Foo ("", 1) != 1)
24 return 1;
26 return 0;