mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
13 lines
138 B
D
13 lines
138 B
D
module globals2;
|
|
|
|
template Bool(bool b)
|
|
{
|
|
const bool Bool = b;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
assert(Bool!(true));
|
|
assert(!Bool!(false));
|
|
}
|