Skip to content

Instantly share code, notes, and snippets.

@dom96
Created April 29, 2018 20:34
Show Gist options
  • Save dom96/c50e624e65e4580de32378281345c5bf to your computer and use it in GitHub Desktop.
Save dom96/c50e624e65e4580de32378281345c5bf to your computer and use it in GitHub Desktop.
type
X = ref object of RootObj
Y = ref object of X
proc inspect(x: X) =
if not(x of Y):
echo("It's an X")
else:
echo("It's a Y")
inspect(Y())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment