summary refs log tree commit diff stats
path: root/tests/accept/compile/tnewsets.nim
blob: 415fe8f7e05a16a55defc651f73edddbdb82da74 (plain) (blame)
1
2
3
4
5
6
# new test for sets:

const elem = ' '

var s: set[char] = {elem}
assert(elem in s and 'a' not_in s and 'c' not_in s )