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

gtest-146.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 56b3850a96e1f634cab7a97d640d56e68c57c73f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;

public class MyLinkedList<T> {
	protected Node first;

	protected class Node
	{
		public T item;

		public Node (T item)
		{
			this.item = item; 
		}
	}
}

class SortedList<U> : MyLinkedList<U>
{
	public void Insert (U x) { 
		Node node = first;
	}
}

class X {
	public static void Main ()
	{ }
}