mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
11 lines
171 B
Nim
11 lines
171 B
Nim
discard """
|
|
file: "typredef.nim"
|
|
line: 7
|
|
errormsg: "illegal recursion in type \'Uint8\'"
|
|
"""
|
|
type
|
|
Uint8 = Uint8 #ERROR_MSG illegal recursion in type 'Uint8'
|
|
|
|
|
|
|