blob: 88e3a1b5ae90a288b60d7501d74e862fa392639e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
For testing only.
Provides a struct with UDA's defined in an external module.
Useful for validating behavior with member privacy.
*/
module std.internal.test.uda;
enum Attr;
struct HasPrivateMembers
{
@Attr int a;
int b;
@Attr private int c;
private int d;
}
|