rust/tests/ui/parser/extern-abi-string-escaping.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
182 B
Rust
Raw Normal View History

// check-pass
// Check that the string literal in `extern lit` will escapes.
fn main() {}
extern "\x43" fn foo() {}
extern "\x43" {
fn bar();
}
type T = extern "\x43" fn();