Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs7082.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b02bd5c8d326dfa7ef88da7eeaeb0834ed6634a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS7082: The CallerFilePathAttribute applied to parameter `o' will have no effect. It is overridden by the CallerLineNumberAttribute
// Line: 9
// Compiler options: -warnaserror

using System.Runtime.CompilerServices;

class D
{
	void Foo ([CallerFilePath, CallerLineNumber] object o = null)
	{
	}
}