summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/issue-3295/two.rs
blob: 0eaf022249beca891169d265dcd47a1d21ac47bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// rustfmt-version: Two
pub enum TestEnum {
    a,
    b,
}

fn the_test(input: TestEnum) {
    match input {
        TestEnum::a => String::from("aaa"),
        TestEnum::b => String::from("this is a very very very very very very very very very very very very very very very ong string"),
        
    };
}