blob: 6b1aa455d981829d4f520202dde8e4dd4f62f54c [file] [log] [blame]
// This test ensures that warnings are working as expected for "custom_code_classes_in_docs"
// feature.
#![deny(warnings)]
#![feature(no_core)]
#![no_core]
/// ```{class="}
/// main;
/// ```
//~^^^ ERROR unclosed quote string
//~| ERROR unclosed quote string
/// ```"
/// main;
/// ```
pub fn foo() {}