2024-08-06 16:48:13 +02:00
|
|
|
// Regression test for remapped paths in rustdoc errors
|
|
|
|
// <https://github.com/rust-lang/rust/issues/69264>.
|
|
|
|
|
|
|
|
//@ compile-flags:-Z unstable-options --remap-path-prefix={{src-base}}=remapped_path
|
|
|
|
//@ rustc-env:RUST_BACKTRACE=0
|
|
|
|
|
|
|
|
#![deny(rustdoc::invalid_html_tags)]
|
|
|
|
|
|
|
|
/// </script>
|
|
|
|
pub struct Bar;
|
2025-03-23 15:50:51 +03:00
|
|
|
|
|
|
|
//~? ERROR unopened HTML tag `script`
|