about summary refs log tree commit diff
path: root/src/test/run-pass/one-tuple.rs
blob: fa54f9529382e6fee9ca6017931a534d624869f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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');
}