data Bool () where {
    True : Bool ()
    False : Bool ()
};

main : Bool () -> _Int ;
main x = case x of {
    1 => 0
}
