summaryrefslogtreecommitdiff
path: root/tests/src/string-chars.rs
blob: f8490e76e37141edc9ce819abf473132778c2b02 (plain)
1
2
3
4
5
6
7
//@ [lean] known-failure
//@ [coq,fstar] skip
//@ no-check-output
fn main() {
    let s = "hello";
    let _chs: Vec<char> = s.chars().collect();
}