    1|       |// https://github.com/taiki-e/cargo-llvm-cov/issues/43
    2|       |
    3|      2|fn func<T: Default + PartialOrd>(t: T) -> bool {
    4|      2|    if t < T::default() { true } else { false }
                                        ^1            ^1
    5|      2|}
  ------------------
  | instantiations::func::<f32>:
  |    3|      1|fn func<T: Default + PartialOrd>(t: T) -> bool {
  |    4|      1|    if t < T::default() { true } else { false }
  |                                        ^0
  |    5|      1|}
  ------------------
  | instantiations::func::<i32>:
  |    3|      1|fn func<T: Default + PartialOrd>(t: T) -> bool {
  |    4|      1|    if t < T::default() { true } else { false }
  |                                                      ^0
  |    5|      1|}
  ------------------
    6|       |
    7|       |#[test]
    8|      1|fn test() {
    9|      1|    assert!(!func(1_f32));
   10|      1|    assert!(func(-1_i32));
   11|      1|}