2019-01-22 14:16:54 +00:00
|
|
|
// run-rustfix
|
2021-02-25 10:25:22 +00:00
|
|
|
// aux-build:proc_macro_derive.rs
|
2019-01-22 14:16:54 +00:00
|
|
|
|
|
|
|
#![warn(clippy::use_self)]
|
2022-03-14 11:02:53 +00:00
|
|
|
#![allow(dead_code, unreachable_code)]
|
2021-07-19 09:52:05 +00:00
|
|
|
#![allow(
|
|
|
|
clippy::should_implement_trait,
|
|
|
|
clippy::upper_case_acronyms,
|
|
|
|
clippy::from_over_into,
|
2021-07-29 10:16:06 +00:00
|
|
|
clippy::self_named_constructors
|
2021-07-19 09:52:05 +00:00
|
|
|
)]
|
2021-02-25 10:25:22 +00:00
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate proc_macro_derive;
|
2019-01-22 14:16:54 +00:00
|
|
|
|
|
|
|
fn main() {}
|
|
|
|
|
|
|
|
mod use_self {
|
2022-04-07 17:39:59 +00:00
|
|
|
struct Foo;
|
2019-01-22 14:16:54 +00:00
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn new() -> Self {
|
|
|
|
Self {}
|
|
|
|
}
|
|
|
|
fn test() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Foo {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod better {
|
2022-04-07 17:39:59 +00:00
|
|
|
struct Foo;
|
2019-01-22 14:16:54 +00:00
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn new() -> Self {
|
|
|
|
Self {}
|
|
|
|
}
|
|
|
|
fn test() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Foo {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod lifetimes {
|
|
|
|
struct Foo<'a> {
|
|
|
|
foo_str: &'a str,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Foo<'a> {
|
|
|
|
// Cannot use `Self` as return type, because the function is actually `fn foo<'b>(s: &'b str) ->
|
|
|
|
// Foo<'b>`
|
|
|
|
fn foo(s: &str) -> Foo {
|
|
|
|
Foo { foo_str: s }
|
|
|
|
}
|
|
|
|
// cannot replace with `Self`, because that's `Foo<'a>`
|
|
|
|
fn bar() -> Foo<'static> {
|
|
|
|
Foo { foo_str: "foo" }
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: the lint does not handle lifetimed struct
|
|
|
|
// `Self` should be applicable here
|
|
|
|
fn clone(&self) -> Foo<'a> {
|
|
|
|
Foo { foo_str: self.foo_str }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod issue2894 {
|
|
|
|
trait IntoBytes {
|
2021-03-25 18:29:11 +00:00
|
|
|
fn to_bytes(self) -> Vec<u8>;
|
2019-01-22 14:16:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// This should not be linted
|
|
|
|
impl IntoBytes for u8 {
|
2021-03-25 18:29:11 +00:00
|
|
|
fn to_bytes(self) -> Vec<u8> {
|
|
|
|
vec![self]
|
2019-01-22 14:16:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod existential {
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn bad(foos: &[Self]) -> impl Iterator<Item = &Self> {
|
|
|
|
foos.iter()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn good(foos: &[Self]) -> impl Iterator<Item = &Self> {
|
|
|
|
foos.iter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod tuple_structs {
|
|
|
|
pub struct TS(i32);
|
|
|
|
|
|
|
|
impl TS {
|
|
|
|
pub fn ts() -> Self {
|
|
|
|
Self(0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod macros {
|
|
|
|
macro_rules! use_self_expand {
|
|
|
|
() => {
|
2021-02-25 10:25:22 +00:00
|
|
|
fn new() -> Foo {
|
|
|
|
Foo {}
|
2019-01-22 14:16:54 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-04-07 17:39:59 +00:00
|
|
|
struct Foo;
|
2019-01-22 14:16:54 +00:00
|
|
|
|
|
|
|
impl Foo {
|
2021-02-25 10:25:22 +00:00
|
|
|
use_self_expand!(); // Should not lint in local macros
|
2019-01-22 14:16:54 +00:00
|
|
|
}
|
2021-02-25 10:25:22 +00:00
|
|
|
|
|
|
|
#[derive(StructAUseSelf)] // Should not lint in derives
|
|
|
|
struct A;
|
2019-01-22 14:16:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mod nesting {
|
2022-04-07 17:39:59 +00:00
|
|
|
struct Foo;
|
2019-01-22 14:16:54 +00:00
|
|
|
impl Foo {
|
|
|
|
fn foo() {
|
2019-04-01 05:19:05 +00:00
|
|
|
#[allow(unused_imports)]
|
2019-01-22 14:16:54 +00:00
|
|
|
use self::Foo; // Can't use Self here
|
|
|
|
struct Bar {
|
|
|
|
foo: Foo, // Foo != Self
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Bar {
|
|
|
|
fn bar() -> Self {
|
|
|
|
Self { foo: Foo {} }
|
|
|
|
}
|
|
|
|
}
|
2019-03-11 14:24:49 +00:00
|
|
|
|
|
|
|
// Can't use Self here
|
|
|
|
fn baz() -> Foo {
|
|
|
|
Foo {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should lint here
|
|
|
|
fn baz() -> Self {
|
|
|
|
Self {}
|
2019-01-22 14:16:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum Enum {
|
|
|
|
A,
|
2019-07-31 00:24:28 +00:00
|
|
|
B(u64),
|
2019-08-01 05:09:57 +00:00
|
|
|
C { field: bool },
|
2019-01-22 14:16:54 +00:00
|
|
|
}
|
|
|
|
impl Enum {
|
|
|
|
fn method() {
|
|
|
|
#[allow(unused_imports)]
|
|
|
|
use self::Enum::*; // Issue 3425
|
|
|
|
static STATIC: Enum = Enum::A; // Can't use Self as type
|
|
|
|
}
|
2019-07-31 00:24:28 +00:00
|
|
|
|
|
|
|
fn method2() {
|
|
|
|
let _ = Self::B(42);
|
|
|
|
let _ = Self::C { field: true };
|
|
|
|
let _ = Self::A;
|
|
|
|
}
|
2019-01-22 14:16:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod issue3410 {
|
|
|
|
|
|
|
|
struct A;
|
|
|
|
struct B;
|
|
|
|
|
|
|
|
trait Trait<T> {
|
2021-02-25 10:25:22 +00:00
|
|
|
fn a(v: T) -> Self;
|
2019-01-22 14:16:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Trait<Vec<A>> for Vec<B> {
|
2021-02-25 10:25:22 +00:00
|
|
|
fn a(_: Vec<A>) -> Self {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Trait<Vec<A>> for Vec<T>
|
|
|
|
where
|
|
|
|
T: Trait<B>,
|
|
|
|
{
|
|
|
|
fn a(v: Vec<A>) -> Self {
|
|
|
|
<Vec<B>>::a(v).into_iter().map(Trait::a).collect()
|
|
|
|
}
|
2019-01-22 14:16:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(clippy::no_effect, path_statements)]
|
|
|
|
mod rustfix {
|
|
|
|
mod nested {
|
2022-04-07 17:39:59 +00:00
|
|
|
pub struct A;
|
2019-01-22 14:16:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl nested::A {
|
|
|
|
const A: bool = true;
|
|
|
|
|
|
|
|
fn fun_1() {}
|
|
|
|
|
|
|
|
fn fun_2() {
|
|
|
|
Self::fun_1();
|
|
|
|
Self::A;
|
|
|
|
|
|
|
|
Self {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-12 06:47:11 +00:00
|
|
|
|
|
|
|
mod issue3567 {
|
2022-04-07 17:39:59 +00:00
|
|
|
struct TestStruct;
|
2019-09-12 06:47:11 +00:00
|
|
|
impl TestStruct {
|
|
|
|
fn from_something() -> Self {
|
|
|
|
Self {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
trait Test {
|
|
|
|
fn test() -> TestStruct;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Test for TestStruct {
|
|
|
|
fn test() -> TestStruct {
|
|
|
|
Self::from_something()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-06 05:13:43 +00:00
|
|
|
|
2019-11-07 03:59:13 +00:00
|
|
|
mod paths_created_by_lowering {
|
|
|
|
use std::ops::Range;
|
|
|
|
|
2022-04-07 17:39:59 +00:00
|
|
|
struct S;
|
2019-11-06 05:13:43 +00:00
|
|
|
|
|
|
|
impl S {
|
|
|
|
const A: usize = 0;
|
|
|
|
const B: usize = 1;
|
|
|
|
|
2019-11-07 03:59:13 +00:00
|
|
|
async fn g() -> Self {
|
|
|
|
Self {}
|
|
|
|
}
|
|
|
|
|
2019-11-06 05:13:43 +00:00
|
|
|
fn f<'a>(&self, p: &'a [u8]) -> &'a [u8] {
|
|
|
|
&p[Self::A..Self::B]
|
|
|
|
}
|
|
|
|
}
|
2019-11-07 03:59:13 +00:00
|
|
|
|
|
|
|
trait T {
|
|
|
|
fn f<'a>(&self, p: &'a [u8]) -> &'a [u8];
|
|
|
|
}
|
|
|
|
|
|
|
|
impl T for Range<u8> {
|
|
|
|
fn f<'a>(&self, p: &'a [u8]) -> &'a [u8] {
|
|
|
|
&p[0..1]
|
|
|
|
}
|
|
|
|
}
|
2019-11-06 05:13:43 +00:00
|
|
|
}
|
2021-02-25 10:25:22 +00:00
|
|
|
|
|
|
|
// reused from #1997
|
|
|
|
mod generics {
|
|
|
|
struct Foo<T> {
|
|
|
|
value: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Foo<T> {
|
|
|
|
// `Self` is applicable here
|
|
|
|
fn foo(value: T) -> Self {
|
|
|
|
Self { value }
|
|
|
|
}
|
|
|
|
|
|
|
|
// `Cannot` use `Self` as a return type as the generic types are different
|
|
|
|
fn bar(value: i32) -> Foo<i32> {
|
|
|
|
Foo { value }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod issue4140 {
|
|
|
|
pub struct Error<From, To> {
|
|
|
|
_from: From,
|
|
|
|
_too: To,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait From<T> {
|
|
|
|
type From;
|
|
|
|
type To;
|
|
|
|
|
|
|
|
fn from(value: T) -> Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait TryFrom<T>
|
|
|
|
where
|
|
|
|
Self: Sized,
|
|
|
|
{
|
|
|
|
type From;
|
|
|
|
type To;
|
|
|
|
|
|
|
|
fn try_from(value: T) -> Result<Self, Error<Self::From, Self::To>>;
|
|
|
|
}
|
|
|
|
|
2021-03-15 20:52:57 +00:00
|
|
|
// FIXME: Suggested fix results in infinite recursion.
|
|
|
|
// impl<F, T> TryFrom<F> for T
|
|
|
|
// where
|
|
|
|
// T: From<F>,
|
|
|
|
// {
|
|
|
|
// type From = Self::From;
|
|
|
|
// type To = Self::To;
|
|
|
|
|
|
|
|
// fn try_from(value: F) -> Result<Self, Error<Self::From, Self::To>> {
|
|
|
|
// Ok(From::from(value))
|
|
|
|
// }
|
|
|
|
// }
|
2021-02-25 10:25:22 +00:00
|
|
|
|
|
|
|
impl From<bool> for i64 {
|
|
|
|
type From = bool;
|
|
|
|
type To = Self;
|
|
|
|
|
|
|
|
fn from(value: bool) -> Self {
|
2021-03-12 14:30:50 +00:00
|
|
|
if value { 100 } else { 0 }
|
2021-02-25 10:25:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod issue2843 {
|
|
|
|
trait Foo {
|
|
|
|
type Bar;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Foo for usize {
|
|
|
|
type Bar = u8;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Foo> Foo for Option<T> {
|
|
|
|
type Bar = Option<T::Bar>;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod issue3859 {
|
|
|
|
pub struct Foo;
|
|
|
|
pub struct Bar([usize; 3]);
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
pub const BAR: usize = 3;
|
|
|
|
|
|
|
|
pub fn foo() {
|
|
|
|
const _X: usize = Foo::BAR;
|
|
|
|
// const _Y: usize = Self::BAR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod issue4305 {
|
|
|
|
trait Foo: 'static {}
|
|
|
|
|
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
impl Foo for Bar {}
|
|
|
|
|
|
|
|
impl<T: Foo> From<T> for Box<dyn Foo> {
|
|
|
|
fn from(t: T) -> Self {
|
|
|
|
Box::new(t)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod lint_at_item_level {
|
2022-04-07 17:39:59 +00:00
|
|
|
struct Foo;
|
2021-02-25 10:25:22 +00:00
|
|
|
|
|
|
|
#[allow(clippy::use_self)]
|
|
|
|
impl Foo {
|
|
|
|
fn new() -> Foo {
|
|
|
|
Foo {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(clippy::use_self)]
|
|
|
|
impl Default for Foo {
|
|
|
|
fn default() -> Foo {
|
|
|
|
Foo::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod lint_at_impl_item_level {
|
2022-04-07 17:39:59 +00:00
|
|
|
struct Foo;
|
2021-02-25 10:25:22 +00:00
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
#[allow(clippy::use_self)]
|
|
|
|
fn new() -> Foo {
|
|
|
|
Foo {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Foo {
|
|
|
|
#[allow(clippy::use_self)]
|
|
|
|
fn default() -> Foo {
|
|
|
|
Foo::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod issue4734 {
|
|
|
|
#[repr(C, packed)]
|
|
|
|
pub struct X {
|
|
|
|
pub x: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<X> for u32 {
|
|
|
|
fn from(c: X) -> Self {
|
|
|
|
unsafe { core::mem::transmute(c) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod nested_paths {
|
|
|
|
use std::convert::Into;
|
|
|
|
mod submod {
|
2022-04-07 17:39:59 +00:00
|
|
|
pub struct B;
|
|
|
|
pub struct C;
|
2021-02-25 10:25:22 +00:00
|
|
|
|
|
|
|
impl Into<C> for B {
|
|
|
|
fn into(self) -> C {
|
|
|
|
C {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct A<T> {
|
|
|
|
t: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> A<T> {
|
|
|
|
fn new<V: Into<T>>(v: V) -> Self {
|
|
|
|
Self { t: Into::into(v) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl A<submod::C> {
|
|
|
|
fn test() -> Self {
|
|
|
|
Self::new::<submod::B>(submod::B {})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-12 14:30:50 +00:00
|
|
|
|
|
|
|
mod issue6818 {
|
|
|
|
#[derive(serde::Deserialize)]
|
|
|
|
struct A {
|
|
|
|
a: i32,
|
|
|
|
}
|
|
|
|
}
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
mod issue7206 {
|
|
|
|
struct MyStruct<const C: char>;
|
|
|
|
impl From<MyStruct<'a'>> for MyStruct<'b'> {
|
|
|
|
fn from(_s: MyStruct<'a'>) -> Self {
|
|
|
|
Self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// keep linting non-`Const` generic args
|
|
|
|
struct S<'a> {
|
|
|
|
inner: &'a str,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct S2<T> {
|
|
|
|
inner: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> S2<T> {
|
|
|
|
fn new() -> Self {
|
|
|
|
unimplemented!();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> S2<S<'a>> {
|
|
|
|
fn new_again() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-01 16:17:38 +00:00
|
|
|
|
|
|
|
mod self_is_ty_param {
|
|
|
|
trait Trait {
|
|
|
|
type Type;
|
|
|
|
type Hi;
|
|
|
|
|
|
|
|
fn test();
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<I> Trait for I
|
|
|
|
where
|
|
|
|
I: Iterator,
|
|
|
|
I::Item: Trait, // changing this to Self would require <Self as Iterator>
|
|
|
|
{
|
|
|
|
type Type = I;
|
|
|
|
type Hi = I::Item;
|
|
|
|
|
|
|
|
fn test() {
|
|
|
|
let _: I::Item;
|
|
|
|
let _: I; // this could lint, but is questionable
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-14 11:02:53 +00:00
|
|
|
|
|
|
|
mod use_self_in_pat {
|
|
|
|
enum Foo {
|
|
|
|
Bar,
|
|
|
|
Baz,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn do_stuff(self) {
|
|
|
|
match self {
|
|
|
|
Self::Bar => unimplemented!(),
|
|
|
|
Self::Baz => unimplemented!(),
|
|
|
|
}
|
|
|
|
match Some(1) {
|
|
|
|
Some(_) => unimplemented!(),
|
|
|
|
None => unimplemented!(),
|
|
|
|
}
|
|
|
|
if let Self::Bar = self {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-06-04 11:34:07 +00:00
|
|
|
|
|
|
|
mod issue8845 {
|
|
|
|
pub enum Something {
|
|
|
|
Num(u8),
|
|
|
|
TupleNums(u8, u8),
|
|
|
|
StructNums { one: u8, two: u8 },
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Foo(u8);
|
|
|
|
|
|
|
|
struct Bar {
|
|
|
|
x: u8,
|
|
|
|
y: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Something {
|
|
|
|
fn get_value(&self) -> u8 {
|
|
|
|
match self {
|
|
|
|
Self::Num(n) => *n,
|
|
|
|
Self::TupleNums(n, _m) => *n,
|
|
|
|
Self::StructNums { one, two: _ } => *one,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn use_crate(&self) -> u8 {
|
|
|
|
match self {
|
|
|
|
Self::Num(n) => *n,
|
|
|
|
Self::TupleNums(n, _m) => *n,
|
|
|
|
Self::StructNums { one, two: _ } => *one,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn imported_values(&self) -> u8 {
|
|
|
|
use Something::*;
|
|
|
|
match self {
|
|
|
|
Num(n) => *n,
|
|
|
|
TupleNums(n, _m) => *n,
|
|
|
|
StructNums { one, two: _ } => *one,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn get_value(&self) -> u8 {
|
|
|
|
let Self(x) = self;
|
|
|
|
*x
|
|
|
|
}
|
|
|
|
|
|
|
|
fn use_crate(&self) -> u8 {
|
|
|
|
let Self(x) = self;
|
|
|
|
*x
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Bar {
|
|
|
|
fn get_value(&self) -> u8 {
|
|
|
|
let Self { x, .. } = self;
|
|
|
|
*x
|
|
|
|
}
|
|
|
|
|
|
|
|
fn use_crate(&self) -> u8 {
|
|
|
|
let Self { x, .. } = self;
|
|
|
|
*x
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|