rust/tests/coverage/long_and_wide.coverage
Zalathar c9c049b2b4 coverage: Use normal edition: headers in coverage tests
Some of these tests were originally written as part of a custom `run-make`
test, so at that time they weren't able to use the normal compiletest header
directive parser.

Now that they're properly integrated, there's no need for them to use
`compile-flags` to specify the edition, since they can use `edition` instead.
2024-02-02 11:17:05 +11:00

152 lines
3.4 KiB
Plaintext

LL| |// edition: 2021
LL| |// ignore-tidy-linelength
LL| |
LL| |// This file deliberately contains line and column numbers larger than 127,
LL| |// to verify that `coverage-dump`'s ULEB128 parser can handle them.
LL| |
LL| 1|fn main() {
LL| 1| wide_function();
LL| 1| long_function();
LL| 1| far_function();
LL| 1|}
LL| |
LL| |#[rustfmt::skip]
LL| 1|fn wide_function() { /* */ (); }
LL| |
LL| 1|fn long_function() {
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1| //
LL| 1|}
LL| |
LL| 1|fn far_function() {}