diff options
Diffstat (limited to 'vendor/indoc/tests/ui/three-arguments.rs')
-rw-r--r-- | vendor/indoc/tests/ui/three-arguments.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/indoc/tests/ui/three-arguments.rs b/vendor/indoc/tests/ui/three-arguments.rs new file mode 100644 index 000000000..7bd11e2d2 --- /dev/null +++ b/vendor/indoc/tests/ui/three-arguments.rs @@ -0,0 +1,9 @@ +use indoc::indoc; + +fn main() { + indoc!(" + a + b + c + " 64 128); +} |