mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-08 14:03:23 +00:00
* stylecheck usages part two: stdlib cleanup typeinfo.nim: importCompilerProc => importcompilerproc nre.nim: newLineFlags => newlineFlags system.nim: JSRoot => JsRoot ref #19319 * prefer importCompilerProc * fix stylecheck error with asyncdispatch it is a partial regression since #12842 * add tests * don't use echo in tests
18 lines
237 B
Nim
18 lines
237 B
Nim
discard """
|
|
matrix: "--styleCheck:error --styleCheck:usages"
|
|
"""
|
|
|
|
import asyncdispatch
|
|
|
|
type
|
|
Name = object
|
|
id: int
|
|
|
|
template hello =
|
|
var iD = "string"
|
|
var name: Name
|
|
doAssert name.id == 0
|
|
doAssert iD == "string"
|
|
|
|
hello()
|