t20938.nim 160 B

12345678910111213
  1. discard """
  2. cmd: "nim c --mm:refc $file"
  3. action: "compile"
  4. """
  5. template foo(x: typed) =
  6. discard x
  7. foo:
  8. var x = "hello"
  9. x.shallowCopy("test")
  10. true