mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 22:10:33 +00:00
16
tests/typerel/t25340.nim
Normal file
16
tests/typerel/t25340.nim
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
type
|
||||
Foo[T] = object of T
|
||||
|
||||
template inheritanceCheck(a, b: untyped) =
|
||||
doAssert a is b
|
||||
doAssert b isnot a
|
||||
|
||||
inheritanceCheck Foo[RootObj], RootObj
|
||||
|
||||
inheritanceCheck Foo[Foo[RootObj]], RootObj
|
||||
inheritanceCheck Foo[Foo[RootObj]], Foo[RootObj]
|
||||
|
||||
inheritanceCheck Foo[Foo[Foo[RootObj]]], RootObj
|
||||
inheritanceCheck Foo[Foo[Foo[RootObj]]], Foo[RootObj]
|
||||
inheritanceCheck Foo[Foo[Foo[RootObj]]], Foo[Foo[RootObj]]
|
||||
Reference in New Issue
Block a user