mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
Fix rustc_ast unit test
This commit is contained in:
parent
e80654a4f1
commit
ae7951ed43
@ -3,6 +3,9 @@ use super::*;
|
||||
// Are ASTs encodable?
|
||||
#[test]
|
||||
fn check_asts_encodable() {
|
||||
fn assert_encodable<T: rustc_serialize::Encodable>() {}
|
||||
fn assert_encodable<
|
||||
T: for<'a> rustc_serialize::Encodable<rustc_serialize::json::Encoder<'a>>,
|
||||
>() {
|
||||
}
|
||||
assert_encodable::<Crate>();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user