rustc-ap-syntax 547.0.0

Automatically published version of the package `syntax` in the rust-lang/rust repository from commit d9bd4b289f07956819c59704d88d9eed61af3a6d The publishing script for this crate lives at: https://github.com/alexcrichton/rustc-auto-publish
use super::*;

// Are ASTs encodable?
#[test]
fn check_asts_encodable() {
    fn assert_encodable<T: rustc_serialize::Encodable>() {}
    assert_encodable::<Crate>();
}