Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: eb8dd04ae88e7d10a836343e0d1f6aa2dbffb839 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
active class TemplateBindingTest {

	class C<T> {

		@Create
		public C();
		@Destroy
		public destroy();

	}

	public c: C< Integer >;
	@Create
	public TemplateBindingTest();
	@Destroy
	public destroy();

} do 'TemplateBindingTest$behavior$1'

Back to the top