summary refs log blame commit diff stats
path: root/compiler
Blame is not available for folders.
enbug_bool.nim?h=devel&id=4fac8af0c9408ee2a8d454693d17fd84067d24c3'>tcodegenbug_bool.nim
blob: a0dbf4eb2dd42016611a9fdc5c6d88cad82497fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
discard """
"""

# issue #13798
{.emit:"""
#include <stdbool.h>
void fun(bool a){}
""".}

proc fun(a: bool) {.importc.}
fun(true)