summaryrefslogtreecommitdiff
path: root/mcs/errors/cs8088.cs
blob: e23fd8958500e74833e671fe4f9a9dae3be19c34 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS8088: A interpolated expression format specifier may not contain trailing whitespace
// Line: 9

public class Test
{
	public static int Main ()
	{
		int v = 0;
		var s = $"{v:X }";
	}
}