summary refs log blame commit diff stats
path: root/tests/sets/tnewsets.nim
blob: f239d4aa2ab90f5eceaa339cd5b1d8697c16364c (plain) (tree)
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 )