chore: codegen

This commit is contained in:
Conrad Ludgate 2021-03-02 14:55:37 +00:00
parent d4fad2be8d
commit b41e73ac12
No known key found for this signature in database
GPG Key ID: 3DD1A1DB3CB4BF63

View File

@ -141,25 +141,6 @@ fn main() {
)
}
#[test]
fn doctest_add_type_ascription() {
check_doc_test(
"add_type_ascription",
r#####"
fn make<T>() -> T { todo!() }
fn main() {
let x = make$0();
}
"#####,
r#####"
fn make<T>() -> T { todo!() }
fn main() {
let x: ${0:_} = make();
}
"#####,
)
}
#[test]
fn doctest_apply_demorgan() {
check_doc_test(