aboutsummaryrefslogtreecommitdiff
path: root/test-suite/tests/invalid-misc.rs
blob: 80421e3b5468080ecea524eae734ccc0d3bbaad0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
extern crate toml;

#[test]
fn bad() {
    fn bad(s: &str) {
        assert!(s.parse::<toml::Value>().is_err());
    }

    bad("a = 01");
    bad("a = 1__1");
    bad("a = 1_");
    bad("''");
    bad("a = 9e99999");

    bad("a = \"\u{7f}\"");
    bad("a = '\u{7f}'");

    bad("a = -0x1");
    bad("a = 0x-1");
}