d: Merge upstream dmd, druntime 4ca4140e58, phobos 454dff14d.
[official-gcc.git] / libphobos / libdruntime / core / internal / attributes.d
blobb7253c23e9bb434a942286ff8145e11a9a938749
1 module core.internal.attributes;
3 /**
4 Used to annotate `unittest`s which need to be tested in a `-betterC` environment.
6 Such `unittest`s will be compiled and executed without linking druntime in, with
7 a `__traits(getUnitTests, mixin(__MODULE__))` style test runner.
8 Note that just like any other `unittest` in druntime, they will also be compiled
9 and executed without `-betterC`.
11 package(core) enum betterC = 1;