mirror of
https://github.com/dlang/phobos.git
synced 2025-04-26 21:22:20 +03:00
11 lines
412 B
D
11 lines
412 B
D
module std.internal.attributes;
|
|
|
|
/**
|
|
Used to annotate `unittest`s which need to be tested in a `-betterC` environment.
|
|
|
|
Such `unittest`s will be compiled and executed without linking druntime in, with
|
|
a `__traits(getUnitTests, mixin(__MODULE__))` style test runner.
|
|
Note that just like any other `unittest` in phobos, they will also be compiled
|
|
and executed without `-betterC`.
|
|
*/
|
|
package(std) enum betterC = 1;
|