view tests/mini/assign1.d @ 650:aa6a0b7968f7

Added test case for bug #100 Removed dubious check for not emitting static private global in other modules without access. This should be handled properly somewhere else, it's causing unresolved global errors for stuff that should work (in MiniD)
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Sun, 05 Oct 2008 17:28:15 +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);
}