rust/tests/ui/option_option.rs

70 lines
1.4 KiB
Rust
Raw Normal View History

2018-10-06 18:18:06 +02: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-12-09 23:26:16 +01:00
fn input(_: Option<Option<u8>>) {}
2017-12-26 06:25:13 +01:00
fn output() -> Option<Option<u8>> {
None
}
fn output_nested() -> Vec<Option<Option<u8>>> {
vec![None]
}
// The lint only generates one warning for this
fn output_nested_nested() -> Option<Option<Option<u8>>> {
None
}
struct Struct {
x: Option<Option<u8>>,
}
2018-01-19 07:10:09 +01:00
impl Struct {
fn struct_fn() -> Option<Option<u8>> {
None
}
}
trait Trait {
fn trait_fn() -> Option<Option<u8>>;
}
2017-12-26 06:25:13 +01:00
enum Enum {
Tuple(Option<Option<u8>>),
2018-12-09 23:26:16 +01:00
Struct { x: Option<Option<u8>> },
2017-12-26 06:25:13 +01:00
}
// The lint allows this
type OptionOption = Option<Option<u32>>;
// The lint allows this
fn output_type_alias() -> OptionOption {
None
}
2018-01-19 07:10:09 +01:00
// The line allows this
impl Trait for Struct {
fn trait_fn() -> Option<Option<u8>> {
None
}
}
2017-12-26 06:25:13 +01:00
fn main() {
input(None);
output();
output_nested();
// The lint allows this
let local: Option<Option<u8>> = None;
// The lint allows this
let expr = Some(Some(true));
}