1// Copyright 2018 Guillaume Pinot (@TeXitoi) <texitoi@texitoi.eu>
2//
3// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6// option. This file may not be copied, modified, or distributed
7
8#[cfg(feature = "derive")]
9#[rustversion::attr(any(not(stable), before(1.64), since(1.65)), ignore)] // MSRV
10#[test]
11fn ui() {
12    let t = trybuild::TestCases::new();
13    t.compile_fail("tests/derive_ui/*.rs");
14}
15