summaryrefslogtreecommitdiffstats
path: root/tests-build/tests/fail/executor_without_current_thread.stderr
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-10-25 12:50:15 -0700
committerGitHub <noreply@github.com>2019-10-25 12:50:15 -0700
commit227533d456fe32e48ffcd3796f1e6c8f9318b230 (patch)
tree498029aaf42dd64eeb8ef0e7d7f29802b45d4e95 /tests-build/tests/fail/executor_without_current_thread.stderr
parent03a9378297c73c2e56a6d6b55db22b92427b850a (diff)
net: move into tokio crate (#1683)
A step towards collapsing Tokio sub crates into a single `tokio` crate (#1318). The `net` implementation is now provided by the main `tokio` crate. Functionality can be opted out of by using the various net related feature flags.
Diffstat (limited to 'tests-build/tests/fail/executor_without_current_thread.stderr')
-rw-r--r--tests-build/tests/fail/executor_without_current_thread.stderr7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests-build/tests/fail/executor_without_current_thread.stderr b/tests-build/tests/fail/executor_without_current_thread.stderr
new file mode 100644
index 00000000..f2287c3f
--- /dev/null
+++ b/tests-build/tests/fail/executor_without_current_thread.stderr
@@ -0,0 +1,7 @@
+error[E0432]: unresolved import `tests_build::tokio_executor::current_thread`
+ --> $DIR/executor_without_current_thread.rs:1:5
+ |
+1 | use tests_build::tokio_executor::current_thread;
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `current_thread` in `tokio_executor`
+
+For more information about this error, try `rustc --explain E0432`.