summary refs log tree commit diff stats
path: root/tests/template/tqualifiedident.nim
blob: 463b14ee7fa9d265ee3d23c924b2ff0df553b547 (plain) (blame)
1
2
3
4
5
6
7
8
block: # issue #19865
  template f() = discard default(system.int)
  f()

# issue #21221, same as above
type M = object
template r() = discard default(tqualifiedident.M)
r()