view tests/mini/structs7.d @ 618:c9aa338280ed

Removed some excessive llvm type logging
author tomas@myhost
date Sun, 28 Sep 2008 15:22:39 +0200
parents 44f08170f4ef
children
line wrap: on
line source

module structs7;

struct S
{
    int i;
    long l;
}

void main()
{
    S s = void;
    int i = s.i;
    long l = s.l;
}