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

test-777.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c1c7844fff4bb8f803da075b011ad8342bd3a0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public class MediaStore
{
	class Thing
	{
		public interface AudioColumns : MediaStore.MediaColumns
		{
		}
	}

	public interface MediaColumns
	{
	}

	public static void Main ()
	{
	}
}