2018-10-06 11:18:06 -05:00
|
|
|
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2018-07-28 10:34:52 -05:00
|
|
|
#![warn(clippy::redundant_field_names)]
|
2018-02-10 14:13:17 -06:00
|
|
|
#![allow(unused_variables)]
|
2018-05-03 08:52:44 -05:00
|
|
|
#![feature(inclusive_range, inclusive_range_fields, inclusive_range_methods)]
|
2018-03-05 02:30:07 -06:00
|
|
|
|
2018-03-10 22:57:28 -06:00
|
|
|
#[macro_use]
|
|
|
|
extern crate derive_new;
|
|
|
|
|
2018-12-09 16:26:16 -06:00
|
|
|
use std::ops::{Range, RangeFrom, RangeInclusive, RangeTo, RangeToInclusive};
|
2018-02-10 14:13:17 -06:00
|
|
|
|
|
|
|
mod foo {
|
|
|
|
pub const BAR: u8 = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Person {
|
|
|
|
gender: u8,
|
|
|
|
age: u8,
|
2018-02-11 03:50:19 -06:00
|
|
|
name: u8,
|
2018-02-10 14:13:17 -06:00
|
|
|
buzz: u64,
|
|
|
|
foo: u8,
|
|
|
|
}
|
|
|
|
|
2018-03-10 22:57:28 -06:00
|
|
|
#[derive(new)]
|
|
|
|
pub struct S {
|
|
|
|
v: String,
|
|
|
|
}
|
|
|
|
|
2018-02-10 14:13:17 -06:00
|
|
|
fn main() {
|
|
|
|
let gender: u8 = 42;
|
|
|
|
let age = 0;
|
|
|
|
let fizz: u64 = 0;
|
2018-02-11 03:50:19 -06:00
|
|
|
let name: u8 = 0;
|
2018-02-10 14:13:17 -06:00
|
|
|
|
|
|
|
let me = Person {
|
|
|
|
gender: gender,
|
|
|
|
age: age,
|
|
|
|
|
2018-12-09 16:26:16 -06:00
|
|
|
name, //should be ok
|
|
|
|
buzz: fizz, //should be ok
|
2018-02-10 14:13:17 -06:00
|
|
|
foo: foo::BAR, //should be ok
|
|
|
|
};
|
2018-03-04 23:31:37 -06:00
|
|
|
|
2018-03-05 02:30:07 -06:00
|
|
|
// Range expressions
|
2018-03-04 23:31:37 -06:00
|
|
|
let (start, end) = (0, 0);
|
|
|
|
|
|
|
|
let _ = start..;
|
|
|
|
let _ = ..end;
|
|
|
|
let _ = start..end;
|
|
|
|
|
|
|
|
let _ = ..=end;
|
|
|
|
let _ = start..=end;
|
|
|
|
|
2018-08-14 00:27:56 -05:00
|
|
|
// Issue #2799
|
|
|
|
let _: Vec<_> = (start..end).collect();
|
|
|
|
|
2018-03-05 02:30:07 -06:00
|
|
|
// hand-written Range family structs are linted
|
|
|
|
let _ = RangeFrom { start: start };
|
|
|
|
let _ = RangeTo { end: end };
|
|
|
|
let _ = Range { start: start, end: end };
|
2018-05-03 08:52:44 -05:00
|
|
|
let _ = RangeInclusive::new(start, end);
|
2018-03-05 02:30:07 -06:00
|
|
|
let _ = RangeToInclusive { end: end };
|
2018-02-10 14:13:17 -06:00
|
|
|
}
|
2018-12-11 08:33:23 -06:00
|
|
|
|
|
|
|
fn issue_3476() {
|
2018-12-27 09:17:45 -06:00
|
|
|
fn foo<T>() {}
|
2018-12-11 08:33:23 -06:00
|
|
|
|
|
|
|
struct S {
|
|
|
|
foo: fn(),
|
|
|
|
}
|
|
|
|
|
|
|
|
S { foo: foo::<i32> };
|
|
|
|
}
|