@use '../theme';
@use '@material/feature-targeting/feature-targeting';

@mixin test($query) {
  .test {
    @include theme.core-styles($query: $query);
  }
}

// This shouldn't output any CSS.
@include test(feature-targeting.any());
