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

test-573.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e903edbcf11ea9f8bca7f9d72c322476a69341ef (plain)
1
2
3
4
5
6
7
8
9
10
public class C
{
	private static float current_factor_width = 1f;

	public static void Main ()
	{
		int width = 5;
		width += -(int)(((current_factor_width) - 1f) * -4.0f);
	}
}