1
Fork 0

Add new rustdoc-ui test for custom_code_classes_in_docs feature

This commit is contained in:
Guillaume Gomez 2023-09-18 22:11:03 +02:00
parent 6f47a858f2
commit 494fdcd8ec
2 changed files with 20 additions and 1 deletions

View file

@ -8,3 +8,11 @@
//~| NOTE see issue #79483 <https://github.com/rust-lang/rust/issues/79483>
//~| HELP add `#![feature(custom_code_classes_in_docs)]` to the crate attributes to enable
pub struct Bar;
/// ```ASN.1
/// int main(void) { return 0; }
/// ```
//~^^^ WARNING custom classes in code blocks will change behaviour
//~| NOTE see issue #79483 <https://github.com/rust-lang/rust/issues/79483>
//~| HELP add `#![feature(custom_code_classes_in_docs)]` to the crate attributes to enable
pub struct Bar2;