view tests/sema/deref_3.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 244142a21cbc
children
line wrap: on
line source

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

    return *a == **b;
}