mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
41 lines
904 B
Nim
41 lines
904 B
Nim
discard """
|
|
cmd: '''nim c --styleCheck:hint $file'''
|
|
nimout: '''
|
|
tlinter.nim(21, 14) Hint: 'nosideeffect' should be: 'noSideEffect' [Name]
|
|
tlinter.nim(21, 28) Hint: 'myown' should be: 'myOwn' [Name]
|
|
tlinter.nim(21, 35) Hint: 'inLine' should be: 'inline' [Name]
|
|
tlinter.nim(25, 1) Hint: 'tyPE' should be: 'type' [Name]
|
|
tlinter.nim(23, 1) Hint: 'foO' should be: 'foo' [Name]
|
|
tlinter.nim(27, 14) Hint: 'Foo_bar' should be: 'FooBar' [Name]
|
|
tlinter.nim(29, 6) Hint: 'someVAR' should be: 'someVar' [Name]
|
|
tlinter.nim(32, 7) Hint: 'i_fool' should be: 'iFool' [Name]
|
|
tlinter.nim(39, 5) Hint: 'meh_field' should be: 'mehField' [Name]
|
|
'''
|
|
action: "compile"
|
|
"""
|
|
|
|
|
|
|
|
{.pragma: myOwn.}
|
|
|
|
proc foo() {.nosideeffect, myown, inLine.} = debugEcho "hi"
|
|
|
|
foO()
|
|
|
|
tyPE FooBar = string
|
|
|
|
var someVar: Foo_bar = "a"
|
|
|
|
echo someVAR
|
|
|
|
proc main =
|
|
var i_fool = 34
|
|
echo i_fool
|
|
|
|
main()
|
|
|
|
type
|
|
Foo = object
|
|
meh_field: int
|
|
|