view tools/binding/llvmsample2.d @ 1578:1dee66f6ec0b

Removed a chunk of code in favour of a shorter and more portable method
author Robert Clipsham <robert@octarineparrot.com>
date Tue, 08 Sep 2009 11:21:30 +0100
parents 1ba61de8796b
children
line wrap: on
line source

// simple test of recursive types.
module llvmsample2;

import llvm.llvm;

void main()
{
    auto th = new TypeHandle();
    auto s = StructType.Get([ PointerType.Get(th.resolve) ], false);
    th.refine(s);
    s.dump();
    th.dispose();

    auto t = getTypeOf(s.ll);
    t.dump();

    assert(s is t);
}