@use "../mixins" as theme;
@use "@material/feature-targeting/functions" as feature;

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

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