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

test-379.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7094428f6a6f39acd8d5aef1f380b747e1c74ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

public class DeadCode {

	public static void Main ()
	{
		SomeFunc ("...");
	}

	static public string SomeFunc (string str)
	{
		return str;
		int i = 0, pos = 0;
	}

}