mirror of
https://github.com/dlang/phobos.git
synced 2025-05-02 08:00:48 +03:00
16 lines
273 B
D
16 lines
273 B
D
/**
|
|
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;
|
|
}
|