rust/tests/ui/new_without_default.rs

120 lines
2.2 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-10-11 12:16:22 +02:00
2018-07-28 17:34:52 +02:00
#![feature(const_fn)]
2017-09-18 12:47:33 +02:00
#![allow(dead_code)]
2018-07-28 17:34:52 +02:00
#![warn(clippy::new_without_default, clippy::new_without_default_derive)]
pub struct Foo;
2017-02-08 14:58:07 +01:00
impl Foo {
pub fn new() -> Foo { Foo }
}
pub struct Bar;
2017-02-08 14:58:07 +01:00
impl Bar {
pub fn new() -> Self { Bar }
}
pub struct Ok;
impl Ok {
pub fn new() -> Self { Ok }
}
impl Default for Ok {
fn default() -> Self { Ok }
}
pub struct Params;
impl Params {
pub fn new(_: u32) -> Self { Params }
}
pub struct GenericsOk<T> {
2016-03-03 19:46:10 +01:00
bar: T,
}
impl<U> Default for GenericsOk<U> {
fn default() -> Self { unimplemented!(); }
}
impl<'c, V> GenericsOk<V> {
pub fn new() -> GenericsOk<V> { unimplemented!() }
}
pub struct LtOk<'a> {
foo: &'a bool,
}
impl<'b> Default for LtOk<'b> {
fn default() -> Self { unimplemented!(); }
}
impl<'c> LtOk<'c> {
pub fn new() -> LtOk<'c> { unimplemented!() }
}
pub struct LtKo<'a> {
foo: &'a bool,
}
impl<'c> LtKo<'c> {
pub fn new() -> LtKo<'c> { unimplemented!() }
// FIXME: that suggestion is missing lifetimes
}
struct Private;
impl Private {
fn new() -> Private { unimplemented!() } // We don't lint private items
2016-03-03 19:46:10 +01:00
}
struct Const;
impl Const {
pub const fn new() -> Const { Const } // const fns can't be implemented via Default
}
pub struct IgnoreGenericNew;
impl IgnoreGenericNew {
pub fn new<T>() -> Self { IgnoreGenericNew } // the derived Default does not make sense here as the result depends on T
}
2017-11-29 17:06:27 +01:00
pub trait TraitWithNew: Sized {
fn new() -> Self {
panic!()
}
}
pub struct IgnoreUnsafeNew;
impl IgnoreUnsafeNew {
pub unsafe fn new() -> Self { IgnoreUnsafeNew }
}
#[derive(Default)]
pub struct OptionRefWrapper<'a, T: 'a>(Option<&'a T>);
impl<'a, T: 'a> OptionRefWrapper<'a, T> {
pub fn new() -> Self {
OptionRefWrapper(None)
}
}
fn main() {}