summary refs log tree commit diff stats
path: root/tests/ccgbugs/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)