summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/issue-14254.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/resolve/issue-14254.stderr')
-rw-r--r--src/test/ui/resolve/issue-14254.stderr182
1 files changed, 0 insertions, 182 deletions
diff --git a/src/test/ui/resolve/issue-14254.stderr b/src/test/ui/resolve/issue-14254.stderr
deleted file mode 100644
index 690a40f7e..000000000
--- a/src/test/ui/resolve/issue-14254.stderr
+++ /dev/null
@@ -1,182 +0,0 @@
-error[E0425]: cannot find value `a` in this scope
- --> $DIR/issue-14254.rs:21:9
- |
-LL | a;
- | ^ not found in this scope
-
-error[E0425]: cannot find value `x` in this scope
- --> $DIR/issue-14254.rs:30:9
- |
-LL | x;
- | ^ help: you might have meant to use the available field: `self.x`
-
-error[E0425]: cannot find value `y` in this scope
- --> $DIR/issue-14254.rs:32:9
- |
-LL | y;
- | ^ help: you might have meant to use the available field: `self.y`
-
-error[E0425]: cannot find value `a` in this scope
- --> $DIR/issue-14254.rs:34:9
- |
-LL | a;
- | ^ not found in this scope
-
-error[E0425]: cannot find value `bah` in this scope
- --> $DIR/issue-14254.rs:36:9
- |
-LL | bah;
- | ^^^
- |
-help: you might have meant to refer to the associated function
- |
-LL | Self::bah;
- | ~~~~~~~~~
-
-error[E0425]: cannot find value `b` in this scope
- --> $DIR/issue-14254.rs:38:9
- |
-LL | b;
- | ^ not found in this scope
-
-error[E0425]: cannot find value `x` in this scope
- --> $DIR/issue-14254.rs:47:9
- |
-LL | x;
- | ^ help: you might have meant to use the available field: `self.x`
-
-error[E0425]: cannot find value `y` in this scope
- --> $DIR/issue-14254.rs:49:9
- |
-LL | y;
- | ^ help: you might have meant to use the available field: `self.y`
-
-error[E0425]: cannot find value `a` in this scope
- --> $DIR/issue-14254.rs:51:9
- |
-LL | a;
- | ^ not found in this scope
-
-error[E0425]: cannot find value `bah` in this scope
- --> $DIR/issue-14254.rs:53:9
- |
-LL | bah;
- | ^^^
- |
-help: you might have meant to refer to the associated function
- |
-LL | Self::bah;
- | ~~~~~~~~~
-
-error[E0425]: cannot find value `b` in this scope
- --> $DIR/issue-14254.rs:55:9
- |
-LL | b;
- | ^ not found in this scope
-
-error[E0425]: cannot find value `bah` in this scope
- --> $DIR/issue-14254.rs:64:9
- |
-LL | bah;
- | ^^^
- |
-help: you might have meant to refer to the associated function
- |
-LL | Self::bah;
- | ~~~~~~~~~
-
-error[E0425]: cannot find value `bah` in this scope
- --> $DIR/issue-14254.rs:73:9
- |
-LL | bah;
- | ^^^
- |
-help: you might have meant to refer to the associated function
- |
-LL | Self::bah;
- | ~~~~~~~~~
-
-error[E0425]: cannot find value `bah` in this scope
- --> $DIR/issue-14254.rs:82:9
- |
-LL | bah;
- | ^^^
- |
-help: you might have meant to refer to the associated function
- |
-LL | Self::bah;
- | ~~~~~~~~~
-
-error[E0425]: cannot find value `bah` in this scope
- --> $DIR/issue-14254.rs:91:9
- |
-LL | bah;
- | ^^^
- |
-help: you might have meant to refer to the associated function
- |
-LL | Self::bah;
- | ~~~~~~~~~
-
-error[E0425]: cannot find value `bah` in this scope
- --> $DIR/issue-14254.rs:100:9
- |
-LL | bah;
- | ^^^
- |
-help: you might have meant to refer to the associated function
- |
-LL | Self::bah;
- | ~~~~~~~~~
-
-error[E0425]: cannot find function `baz` in this scope
- --> $DIR/issue-14254.rs:19:9
- |
-LL | baz();
- | ^^^ help: you might have meant to call the method: `self.baz`
-
-error[E0425]: cannot find function `baz` in this scope
- --> $DIR/issue-14254.rs:28:9
- |
-LL | baz();
- | ^^^ help: you might have meant to call the method: `self.baz`
-
-error[E0425]: cannot find function `baz` in this scope
- --> $DIR/issue-14254.rs:45:9
- |
-LL | baz();
- | ^^^ help: you might have meant to call the method: `self.baz`
-
-error[E0425]: cannot find function `baz` in this scope
- --> $DIR/issue-14254.rs:62:9
- |
-LL | baz();
- | ^^^ help: you might have meant to call the method: `self.baz`
-
-error[E0425]: cannot find function `baz` in this scope
- --> $DIR/issue-14254.rs:71:9
- |
-LL | baz();
- | ^^^ help: you might have meant to call the method: `self.baz`
-
-error[E0425]: cannot find function `baz` in this scope
- --> $DIR/issue-14254.rs:80:9
- |
-LL | baz();
- | ^^^ help: you might have meant to call the method: `self.baz`
-
-error[E0425]: cannot find function `baz` in this scope
- --> $DIR/issue-14254.rs:89:9
- |
-LL | baz();
- | ^^^ help: you might have meant to call the method: `self.baz`
-
-error[E0425]: cannot find function `baz` in this scope
- --> $DIR/issue-14254.rs:98:9
- |
-LL | baz();
- | ^^^ help: you might have meant to call the method: `self.baz`
-
-error: aborting due to 24 previous errors
-
-For more information about this error, try `rustc --explain E0425`.