mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-04-18 01:39:03 +02:00
Fixed problem in AssignExp where the result value might be uninitialized. see mini/assign1.d
This commit is contained in:
17
tests/mini/assign1.d
Normal file
17
tests/mini/assign1.d
Normal file
@@ -0,0 +1,17 @@
|
||||
module mini.assign1;
|
||||
|
||||
extern(C) int printf(char*, ...);
|
||||
|
||||
struct X
|
||||
{
|
||||
int a;
|
||||
alias a b;
|
||||
}
|
||||
void main()
|
||||
{
|
||||
X e = void;
|
||||
e.a = e.b = 5;
|
||||
printf("%d - %d\n", e.a, e.b);
|
||||
assert(e.a == 5);
|
||||
assert(e.a == e.b);
|
||||
}
|
||||
Reference in New Issue
Block a user