summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0266-29.cs
blob: c24fce25bd0198cc547037f5743ee52913693e0f (plain)
1
2
3
4
5
6
7
8
9
10
// CS0266: Cannot implicitly convert type `double' to `int'. An explicit conversion exists (are you missing a cast?)
// Line: 8

class Program
{
	static void Main()
	{
		var s = $"{1, 0.0}";
	}
}