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

	public active class Test {

		private test(out test: Test);
		@Create
		public Test();
		@Destroy
		public destroy();

	} do 'Test$behavior$1'

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

}

Back to the top