summaryrefslogtreecommitdiff
path: root/mcs/errors/cs8094.cs
blob: a8792ce8390ef8f7449e5c760547313ec118e284 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS8094: Alignment value has a magnitude greater than 32767 and may result in a large formatted string
// Line: 9
// Compiler options: -warnaserror

class Program
{
	static void Main ()
	{
		var s = $"{1, int.MaxValue }";
	}
}