diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-11-29 06:05:56 +1100 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-11-29 06:10:15 +1100 |
| commit | 76adf05cfbffd78fc3f9e123634e992a70798e8f (patch) | |
| tree | 4b336dfb181acee20f72f418175b9c37cb5f83bd /tests/ui/parser/impl-qpath.rs | |
| parent | 6b6a867ae9eac4e78d041ac4ee84be1072a48cf7 (diff) | |
| download | rust-76adf05cfbffd78fc3f9e123634e992a70798e8f.tar.gz rust-76adf05cfbffd78fc3f9e123634e992a70798e8f.zip | |
Rename `-Zparse-only`.
I was surprised to find that running with `-Zparse-only` only parses the crate root file. Other files aren't parsed because that happens later during expansion. This commit renames the option and updates the help message to make this clearer.
Diffstat (limited to 'tests/ui/parser/impl-qpath.rs')
| -rw-r--r-- | tests/ui/parser/impl-qpath.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/parser/impl-qpath.rs b/tests/ui/parser/impl-qpath.rs index d7c4989b6e4..fed026792c9 100644 --- a/tests/ui/parser/impl-qpath.rs +++ b/tests/ui/parser/impl-qpath.rs @@ -1,5 +1,5 @@ //@ check-pass -//@ compile-flags: -Z parse-only +//@ compile-flags: -Z parse-crate-root-only impl <*const u8>::AssocTy {} // OK impl <Type as Trait>::AssocTy {} // OK |
