add test case

This commit is contained in:
Vindaar
2018-09-17 19:56:42 +02:00
parent e9addb3ab2
commit 72a65c43a7

16
tests/stdlib/t8925.nim Normal file
View File

@@ -0,0 +1,16 @@
discard """
file: "strscans.nim"
errormsg: "type mismatch between pattern '$i' (position: 1) and HourRange var 'hour'"
"""
import strscans
type
HourRange = range[0..23]
var
hour: HourRange
timeStr: string
if scanf(timeStr, "$i", hour):
discard