summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/issue-22692.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/resolve/issue-22692.stderr')
-rw-r--r--src/test/ui/resolve/issue-22692.stderr88
1 files changed, 0 insertions, 88 deletions
diff --git a/src/test/ui/resolve/issue-22692.stderr b/src/test/ui/resolve/issue-22692.stderr
deleted file mode 100644
index 6962aa161..000000000
--- a/src/test/ui/resolve/issue-22692.stderr
+++ /dev/null
@@ -1,88 +0,0 @@
-error[E0423]: expected value, found struct `String`
- --> $DIR/issue-22692.rs:2:13
- |
-LL | let _ = String.new();
- | ^^^^^^- help: use the path separator to refer to an item: `::`
-
-error[E0423]: expected value, found struct `String`
- --> $DIR/issue-22692.rs:6:13
- |
-LL | let _ = String.default;
- | ^^^^^^- help: use the path separator to refer to an item: `::`
-
-error[E0423]: expected value, found struct `Vec`
- --> $DIR/issue-22692.rs:10:13
- |
-LL | let _ = Vec::<()>.with_capacity(1);
- | ^^^^^^^^^- help: use the path separator to refer to an item: `::`
-
-error[E0423]: expected value, found struct `std::cell::Cell`
- --> $DIR/issue-22692.rs:17:9
- |
-LL | ::std::cell::Cell
- | ^^^^^^^^^^^^^^^^^
-...
-LL | Type!().get();
- | ------- in this macro invocation
- |
- = note: this error originates in the macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info)
-help: use the path separator to refer to an item
- |
-LL | <Type!()>::get();
- | ~~~~~~~~~~~
-
-error[E0423]: expected value, found struct `std::cell::Cell`
- --> $DIR/issue-22692.rs:17:9
- |
-LL | ::std::cell::Cell
- | ^^^^^^^^^^^^^^^^^
-...
-LL | Type! {}.get;
- | -------- in this macro invocation
- |
- = note: this error originates in the macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info)
-help: use the path separator to refer to an item
- |
-LL | <Type! {}>::get;
- | ~~~~~~~~~~~~
-
-error[E0423]: expected value, found struct `Vec`
- --> $DIR/issue-22692.rs:26:9
- |
-LL | Vec.new()
- | ^^^- help: use the path separator to refer to an item: `::`
-...
-LL | let _ = create!(type method);
- | -------------------- in this macro invocation
- |
- = note: this error originates in the macro `create` (in Nightly builds, run with -Z macro-backtrace for more info)
-
-error[E0423]: expected value, found struct `Vec`
- --> $DIR/issue-22692.rs:31:9
- |
-LL | Vec.new
- | ^^^- help: use the path separator to refer to an item: `::`
-...
-LL | let _ = create!(type field);
- | ------------------- in this macro invocation
- |
- = note: this error originates in the macro `create` (in Nightly builds, run with -Z macro-backtrace for more info)
-
-error[E0423]: expected value, found struct `std::cell::Cell`
- --> $DIR/issue-22692.rs:17:9
- |
-LL | ::std::cell::Cell
- | ^^^^^^^^^^^^^^^^^
-...
-LL | let _ = create!(macro method);
- | --------------------- in this macro invocation
- |
- = note: this error originates in the macro `Type` which comes from the expansion of the macro `create` (in Nightly builds, run with -Z macro-backtrace for more info)
-help: use the path separator to refer to an item
- |
-LL | <Type!()>::new(0)
- | ~~~~~~~~~~~
-
-error: aborting due to 8 previous errors
-
-For more information about this error, try `rustc --explain E0423`.