summaryrefslogtreecommitdiff
path: root/mcs/errors/cs4017.cs
blob: f6ac27d07eb4402e26c3a066472f827eb97a15c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS4017: The CallerLineNumberAttribute attribute cannot be applied because there is no standard conversion from `int' to `byte'
// Line: 8

using System.Runtime.CompilerServices;

class C
{
	public void Trace([CallerLineNumber] byte member = 1)
	{
	}
}