summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rfc-1937-termination-trait/termination-trait-test-wrong-type.rs
blob: 193a523aed24bab627a78589bed704b887c53025 (plain)
1
2
3
4
5
6
7
8
// compile-flags: --test

use std::num::ParseFloatError;

#[test]
fn can_parse_zero_as_f32() -> Result<f32, ParseFloatError> { //~ ERROR
    "0".parse()
}