view tests/mini/assign1.d @ 1578:1dee66f6ec0b

Removed a chunk of code in favour of a shorter and more portable method
author Robert Clipsham <robert@octarineparrot.com>
date Tue, 08 Sep 2009 11:21:30 +0100
parents 261b05cf4d1c
children
line wrap: on
line source

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);
}