summary refs log tree commit diff stats
path: root/tests/stdlib/t7686.nim
blob: 9902cfcb585f99a0f20105284869fa174bbe936e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import std/strutils
import std/assertions

type
  MyEnum = enum
    A,
    a

doAssert parseEnum[MyEnum]("A") == A
doAssert parseEnum[MyEnum]("a") == a