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

gcs0177.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91dde9c8a74bb49288c0467756d83be171a13f2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0177: The out parameter `output' must be assigned to before control leaves the current method
// Line: 10

class Test
{
	delegate T Creator<T> ();

	static bool TryAction<T> (Creator<T> creator, out T output) where T : struct
	{
		return false;
	}
}