mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 22:33:49 +00:00
17 lines
223 B
Nim
17 lines
223 B
Nim
discard """
|
|
errormsg: "type mismatch"
|
|
line: 16
|
|
"""
|
|
|
|
type
|
|
Dog = object
|
|
name: string
|
|
|
|
Cat = object
|
|
name: string
|
|
|
|
let dog: Dog = Dog(name: "Fluffy")
|
|
let cat: Cat = Cat(name: "Fluffy")
|
|
|
|
echo(dog == cat)
|