address 0x2 { module X { spec schema Foo { ensures true; } spec schema Bar { ensures true; } } module M { use 0x2::X::{Foo, Bar as Baz}; struct S {} fun t() { } spec t { apply Foo to t; apply Baz to t; } } }