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

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

public class Foo<T>
{
	Node node;

	public Node Test<V> ()
	{
		return node;
	}

	public class Node
	{ }
}

class X
{
	static void Main ()
	{ }
}