Describe the bug
The upgrade to 3.26.0 results in a compilation error when invoking assertThat() with an argument of type java.time.Year.
- assertj core version: 3.26.0
- java version: 17
Test case reproducing the bug
@Test
void example() {
Year year = Year.now();
assertThat(year).isNotNull();
}
