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

cs8077.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4bbc74260e6865428d7d4711db3b5f6ead3a4f5e (plain)
1
2
3
4
5
6
7
8
9
10
// CS8077: A single-line comment may not be used in an interpolated string
// Line: 8

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