view tests/mini/structs6.d @ 924:0ea8bdfe4405

Fixed problem accessing global variables from naked asm on osx.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 03 Feb 2009 18:42:25 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module structs6;

struct S
{
    float f;
}

void func(S s)
{
}

void main()
{
    func(S());
}