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

Library.cs « NestedNested « Xml « TestCases « Tests « linker - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e024ab6c5f5ea294621f4e9147cda2bc393af5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace TestCases.Xml.NestedNested
{
	public class Foo
	{
	}

	[AssertLinked]
	public class Bar
	{
		[AssertLinked]
		public class Baz
		{
			[AssertLinked]
			public class Gazonk
			{
			}
		}
	}
}