summary refs log tree commit diff stats
path: root/tests/overload/tissue966.nim
diff options
context:
space:
mode:
authorringabout <43030857+ringabout@users.noreply.github.com>2023-08-09 13:18:50 +0800
committerGitHub <noreply@github.com>2023-08-09 13:18:50 +0800
commitc622e58db968da29e743472d6619137598cc546a (patch)
tree04adb308cfcad922dc418d16c294ff1c70e851a7 /tests/overload/tissue966.nim
parent28b2e429ef64503f7a239ee8fc3043c3fe883ec6 (diff)
downloadNim-c622e58db968da29e743472d6619137598cc546a.tar.gz
make the name of procs consistent with the name forwards (#22424)
It seems that `--stylecheck:error` acts up when the name forwards is involved.


```nim
proc thisOne*(x: var int)
proc thisone(x: var int) = x = 1
```

It cannot understand this at all.
Diffstat (limited to 'tests/overload/tissue966.nim')
0 files changed, 0 insertions, 0 deletions
href='#n61'>61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112