mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-12 00:37:41 +01:00
12 lines
416 B
D
12 lines
416 B
D
|
module core.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 druntime, they will also be compiled
|
||
|
and executed without `-betterC`.
|
||
|
*/
|
||
|
package(core) enum betterC = 1;
|