2014-09-15 21:22:17 -05:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
// Test that the parser does not attempt to parse struct literals
|
|
|
|
// within assignments in if expressions.
|
|
|
|
|
2015-09-11 03:15:58 -05:00
|
|
|
#![allow(unused_parens)]
|
|
|
|
|
2014-09-15 21:22:17 -05:00
|
|
|
struct Foo {
|
2015-01-08 05:02:42 -06:00
|
|
|
foo: usize
|
2014-09-15 21:22:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2015-03-03 02:42:26 -06:00
|
|
|
let x = 1;
|
2014-09-15 21:22:17 -05:00
|
|
|
let y: Foo;
|
|
|
|
|
|
|
|
// `x { ... }` should not be interpreted as a struct literal here
|
|
|
|
if x = x {
|
2015-01-12 00:01:44 -06:00
|
|
|
//~^ ERROR mismatched types
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected type `bool`
|
|
|
|
//~| found type `()`
|
|
|
|
//~| expected bool, found ()
|
2014-09-15 21:22:17 -05:00
|
|
|
println!("{}", x);
|
|
|
|
}
|
|
|
|
// Explicit parentheses on the left should match behavior of above
|
|
|
|
if (x = x) {
|
2015-01-12 00:01:44 -06:00
|
|
|
//~^ ERROR mismatched types
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected type `bool`
|
|
|
|
//~| found type `()`
|
|
|
|
//~| expected bool, found ()
|
2014-09-15 21:22:17 -05:00
|
|
|
println!("{}", x);
|
|
|
|
}
|
|
|
|
// The struct literal interpretation is fine with explicit parentheses on the right
|
|
|
|
if y = (Foo { foo: x }) {
|
2015-01-12 00:01:44 -06:00
|
|
|
//~^ ERROR mismatched types
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected type `bool`
|
|
|
|
//~| found type `()`
|
|
|
|
//~| expected bool, found ()
|
2014-09-15 21:22:17 -05:00
|
|
|
println!("{}", x);
|
|
|
|
}
|
|
|
|
}
|