% Build in a pregen grade, e.g. hlc.gc.pregen

:- module sgt_int64.
:- interface.

:- import_module io.

:- pred main(io::di, io::uo) is det.

:- implementation.

:- type foo
    --->    foo(int)
    ;       bar(int64).

main(!IO) :-
    write(bar(123i64), !IO),
    nl(!IO).
