view tests/mini/assign1.d @ 1651:cb960b882ca3 default tip

bindings were moved to dsource.org/projects/bindings/
author Moritz Warning <moritzwarning@web.de>
date Thu, 20 May 2010 20:05:03 +0200
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);
}