view tests/sema/deref_2.d @ 116:0cd8d6ab3f89

Add in the types for float and co.
author Anders Halager <halager@gmail.com>
date Sun, 25 May 2008 18:19:09 +0200
parents 189c049cbfcc
children
line wrap: on
line source

int main()
{
    int* a;
    int* b;
    a = b;
    *a = 1;

    return *a == *b;
}