//! Runs the ETDL conformance suite (declarative cases in `conformance/`).
//! Kept separate so the suite can grow without touching compiler internals.
#[path="../../conformance/conformance.rs"]modconformance;#[test]fnetdl_conformance_suite(){// The suite defines its own #[test]s; this wrapper just ensures the module
// compiles and is linked.
let_=conformance::run_conformance_main();}