Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs8076.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a14d74bf821f03ca899993181a3af51e6d2183eb (plain)
1
2
3
4
5
6
7
8
9
10
// CS8076: Missing close delimiter `}' for interpolated expression
// Line: 8

public class Test
{
	public static int Main ()
	{
		var s = $"test { arg ";
	}
}