Auto merge of #13300 - Veykril:cfg-false, r=Veykril

Use cfg(any()) instead of cfg(FALSE) for disabling proc-macro test

cc https://github.com/rust-lang/rust-analyzer/pull/13286
This commit is contained in:
bors 2022-09-27 14:11:04 +00:00
commit bd8c5b6b42

View file

@ -821,7 +821,7 @@ fn main() {
#[test]
// FIXME: Re-enable once we can run proc-macro tests on rust-lang/rust-analyzer again
#[cfg(FALSE)]
#[cfg(any())]
fn resolve_proc_macro() {
use expect_test::expect;
if skip_slow_tests() {