summaryrefslogtreecommitdiff
path: root/mcs/errors/cs8089.cs
blob: 45eaed860700ec02a84b541b0d5b6f51d646aed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS8089: Empty interpolated expression format specifier
// Line: 8

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