forked from mirrors/gecko-dev
<!-- Please describe your changes on the following line: --> This makes the internal tidy script properly ignore the contents of Rust multiline strings. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #18551 (github issue number if applicable). <!-- Either: --> - [X] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> Source-Repo: https://github.com/servo/servo Source-Revision: a8a25dac5226a12916c8fe17155d1dbb3b6cb565 --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : ec337ad33ec9033a2d3819f0fbc9a9778b23c073
28 lines
782 B
Rust
28 lines
782 B
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
// This puts a "multi-line string
|
|
// inside of a comment" and then subsequently has a hyphenated-phrase
|
|
|
|
|
|
const FOO: &'static str = "Do not confuse 'apostrophes',
|
|
They can be 'lifetimes' or 'characters'";
|
|
|
|
|
|
fn main() {
|
|
assert!(foo("test
|
|
foo-bar"));
|
|
|
|
assert!(foo("test
|
|
test2 \"
|
|
foo-bar"));
|
|
|
|
assert!(foo("test
|
|
test2 \
|
|
foo-bar"));
|
|
|
|
println!("This is a multiline string with a URL, which kinda, \
|
|
sorta looks like a comment https://github.com/servo/servo/");
|
|
}
|