• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: Apache-2.0 OR MIT
2 
3 #![cfg(not(miri))]
4 
5 #[rustversion::attr(not(nightly), ignore)]
6 #[test]
expandtest()7 fn expandtest() {
8     let args = &["--all-features"];
9     macrotest::expand_args("tests/expand/**/*.rs", args);
10 }
11