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

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

namespace Test
{
	public class Application
	{
		public static void Main()
		{
			string[] array = new string[10];

			System.Collections.Generic.IEnumerable<string> enumer = array;
		}
	}
}