blob: 531512e7a12515da1c06434664784979f4688b6d (
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.MinValue }";
}
}
|