Attribute Macro rustfmt_config_proc_macro::nightly_only_test

source ·
#[nightly_only_test]
Expand description

Used to conditionally output the TokenStream for tests that need to be run on nightly only.


#[nightly_only_test]
#[test]
fn test_needs_nightly_rustfmt() {
  assert!(true);
}