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

cs8087.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a21f1b258b8b018b9eb62f72ca6b50ea0b984ed (plain)
1
2
3
4
5
6
7
8
9
10
// CS8087: A `{' character may only be escaped by doubling `{{' in an interpolated string
// Line: 8

public class Test
{
	public static int Main ()
	{
		var x = $" \u007B ";
	}
}