1 // EXTRA_SOURCES: imports/A16a.d
2 
3 import std.stdio;
4 
5 class AA16
6 {
7   protected:
this()8     this()
9     {
10         printf("class AA16\n");
11     }
12 }
13