summaryrefslogtreecommitdiffstats
path: root/src/test/ui/tuple/one-tuple.rs
blob: 00fbadce1ac882af2bcbaa22a7859ca2181380b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// run-pass
// Why one-tuples? Because macros.


pub fn main() {
    match ('c',) {
        (x,) => {
            assert_eq!(x, 'c');
        }
    }
    // test the 1-tuple type too
    let x: (char,) = ('d',);
    let (y,) = x;
    assert_eq!(y, 'd');
}