mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
13 lines
254 B
Rust
13 lines
254 B
Rust
// compile-flags:--test
|
|
|
|
/// Example of rustdoc incorrectly parsing <code>```rust,should_panic</code>.
|
|
///
|
|
/// ```should_panic
|
|
/// fn main() { panic!("fee"); }
|
|
/// ```
|
|
///
|
|
/// ```rust,should_panic
|
|
/// fn main() { panic!("fum"); }
|
|
/// ```
|
|
pub fn foo() {}
|