Skip to content

Commit

Permalink
float parsing: Add test for a fixed issue (#18232)
Browse files Browse the repository at this point in the history
Fixes #14407 .

This issue was fixed by #18139.
  • Loading branch information
kaushalmodi authored Jun 24, 2021
1 parent 16038d4 commit f128f79
Showing 1 changed file with 18 additions and 11 deletions.
29 changes: 18 additions & 11 deletions tests/errmsgs/treportunused.nim
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,19 @@ discard """
matrix: "--hint:all:off --hint:XDeclaredButNotUsed"
nimoutFull: true
nimout: '''
treportunused.nim(21, 10) Hint: 's1' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(22, 10) Hint: 's2' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(23, 10) Hint: 's3' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(24, 6) Hint: 's4' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(25, 6) Hint: 's5' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(26, 7) Hint: 's6' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(27, 7) Hint: 's7' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(28, 5) Hint: 's8' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(29, 5) Hint: 's9' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(30, 6) Hint: 's10' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(31, 6) Hint: 's11' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(23, 10) Hint: 's1' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(24, 10) Hint: 's2' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(25, 10) Hint: 's3' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(26, 6) Hint: 's4' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(27, 6) Hint: 's5' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(28, 7) Hint: 's6' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(29, 7) Hint: 's7' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(30, 5) Hint: 's8' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(31, 5) Hint: 's9' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(32, 6) Hint: 's10' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(33, 6) Hint: 's11' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(37, 3) Hint: 'v0.99' is declared but not used [XDeclaredButNotUsed]
treportunused.nim(38, 3) Hint: 'v0.99.99' is declared but not used [XDeclaredButNotUsed]
'''
action: compile
"""
Expand All @@ -29,3 +31,8 @@ let s8 = 0
var s9: int
type s10 = object
type s11 = type(1.2)

# https://github.com/nim-lang/Nim/issues/14407
let
`v0.99` = "0.99"
`v0.99.99` = "0.99.99"

0 comments on commit f128f79

Please sign in to comment.