diff options
author | Araq <rumpf_a@web.de> | 2019-06-07 11:50:56 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-06-07 11:50:56 +0200 |
commit | 790bc5b07bd192d4ddd2bcd08179e8cd82236f55 (patch) | |
tree | 07e3c6b82e122aeecf7f988dc1c465b2fae2c5da /nimpretty/tests/expected | |
parent | 5a3722410257598d7b07c7b6c719a225a53dbe37 (diff) | |
download | Nim-790bc5b07bd192d4ddd2bcd08179e8cd82236f55.tar.gz |
nimpretty: fixes #10177 [bugfix]
Diffstat (limited to 'nimpretty/tests/expected')
-rw-r--r-- | nimpretty/tests/expected/exhaustive.nim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/nimpretty/tests/expected/exhaustive.nim b/nimpretty/tests/expected/exhaustive.nim index 91a2e9027..784773714 100644 --- a/nimpretty/tests/expected/exhaustive.nim +++ b/nimpretty/tests/expected/exhaustive.nim @@ -385,3 +385,12 @@ let res = execProcess( let res = execProcess( "echo | openssl s_client -connect example.com:443 2>/dev/null | openssl x509 -noout -dates") + + +# bug #10177 + +proc foo*() = + discard + +proc foo*[T]() = + discard |