summary refs log tree commit diff stats
path: root/tests/misc/åäö.nim
blob: b3caa9861e309cdcbe7f8a8e9d10d63482cd4045 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
discard """
    action: run
"""

# Tests that module names can contain multi byte characters

let a = 1
doAssert åäö.a == 1

proc inlined() {.inline.} = discard
inlined()