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

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

namespace N1.Derived {
	class Dummy {}
}

namespace N2.Derived {
	class Dummy {}
}

public class DerivedAttribute : Attribute {
}

[Derived ()]
class T {
	public static void Main () {}
}