mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
20 lines
207 B
Nim
20 lines
207 B
Nim
discard """
|
|
output: "0.0"
|
|
"""
|
|
|
|
# bug #1919
|
|
|
|
type
|
|
Base[M] = object of RootObj
|
|
a : M
|
|
|
|
Sub1[M] = object of Base[M]
|
|
b : int
|
|
|
|
Sub2[M] = object of Sub1[M]
|
|
c : int
|
|
|
|
var x: Sub2[float]
|
|
|
|
echo x.a
|