mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-03-29 16:19:02 +02: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));
|
|
}
|