mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 03:13:13 +01:00
13 lines
161 B
D
13 lines
161 B
D
module condexp1;
|
|
|
|
void main()
|
|
{
|
|
char[] a = "hello";
|
|
char[] b = "world";
|
|
int i = 42;
|
|
{
|
|
char[] c = i > 50 ? b : a;
|
|
assert(c is a);
|
|
}
|
|
}
|