mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
* stdlib tests now check refc too * typo * fixes line numbers * disable cpp * do not touch
14 lines
236 B
Nim
14 lines
236 B
Nim
discard """
|
|
matrix: "--mm:refc; --mm:orc"
|
|
targets: "c js"
|
|
joinable: false
|
|
"""
|
|
|
|
import std/os
|
|
import std/assertions
|
|
|
|
var params = paramCount()
|
|
doAssert params == 0
|
|
doAssert paramStr(0).len > 0
|
|
doAssert commandLineParams().len == 0
|