bassert 0.0.4

A Better Assert macro This macro will print out the values of each side of an expression and also the values of function arguments.
Build #55525 2017-06-04 16:14:18

Build failed. If you want to re-trigger a documentation build, you can do it here. You can find more information on docs.rs builds documentation on the builds page.

# rustc version
rustc 1.19.0-dev (28a93c1f4 2017-05-31)# docs.rs version
cratesfyi 0.4.0-dev (bedcc0c 2017-06-01)# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading bassert v0.0.4
Documenting bassert v0.0.4
Running `rustdoc --crate-name bassert .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -L dependency=/home/cratesfyi/cratesfyi/debug/deps`
error[E0432]: unresolved import `syntax::ast::TokenTree`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:13:25
|
13 | use syntax::ast::{self, TokenTree};
|                         ^^^^^^^^^ no `TokenTree` in `ast`

error[E0432]: unresolved import `syntax::ext::base::MacExpr`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:15:58
|
15 | use syntax::ext::base::{DummyResult, ExtCtxt, MacResult, MacExpr};
|                                                          ^^^^^^^ no `MacExpr` in `ext::base`

error[E0432]: unresolved import `rustc::plugin::Registry`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:16:5
|
16 | use rustc::plugin::Registry;
|     ^^^^^^^^^^^^^^^^^^^^^^^ Could not find `plugin` in `rustc`

error[E0531]: cannot find tuple struct/variant `ExprBinary` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:66:14
|
66 |         ast::ExprBinary(cmp, ref given, ref expected) => {
|              ^^^^^^^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::ExprBinary;
| use rustc::hir::Expr_::ExprBinary;

error[E0531]: cannot find tuple struct/variant `ExprCall` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:83:14
|
83 |         ast::ExprCall(ref fun, ref args) if args.len() > 0 && args.len() < 7 => {
|              ^^^^^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::ExprCall;
| use rustc::hir::Expr_::ExprCall;

error[E0531]: cannot find unit struct/variant or constant `BiEq` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:213:14
|
213 |         ast::BiEq  => {
|              ^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiEq;
| use rustc::hir::BinOp_::BiEq;

error[E0531]: cannot find unit struct/variant or constant `BiNe` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:216:14
|
216 |         ast::BiNe  => {
|              ^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiNe;
| use rustc::hir::BinOp_::BiNe;

error[E0531]: cannot find unit struct/variant or constant `BiLe` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:219:14
|
219 |         ast::BiLe  => {
|              ^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiLe;
| use rustc::hir::BinOp_::BiLe;

error[E0531]: cannot find unit struct/variant or constant `BiGe` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:222:14
|
222 |         ast::BiGe  => {
|              ^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiGe;
| use rustc::hir::BinOp_::BiGe;

error[E0531]: cannot find unit struct/variant or constant `BiLt` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:225:14
|
225 |         ast::BiLt  => {
|              ^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiLt;
| use rustc::hir::BinOp_::BiLt;

error[E0531]: cannot find unit struct/variant or constant `BiGt` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:228:14
|
228 |         ast::BiGt  => {
|              ^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiGt;
| use rustc::hir::BinOp_::BiGt;

error[E0531]: cannot find unit struct/variant or constant `BiOr` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:231:14
|
231 |         ast::BiOr  => {
|              ^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiOr;
| use rustc::hir::BinOp_::BiOr;

error[E0531]: cannot find unit struct/variant or constant `BiAnd` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:234:14
|
234 |         ast::BiAnd => {
|              ^^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiAnd;
| use rustc::hir::BinOp_::BiAnd;

error[E0531]: cannot find unit struct/variant or constant `BiAdd` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:237:14
|
237 |         ast::BiAdd => {
|              ^^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiAdd;
| use rustc::hir::BinOp_::BiAdd;

error[E0531]: cannot find unit struct/variant or constant `BiSub` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:240:14
|
240 |         ast::BiSub => {
|              ^^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiSub;
| use rustc::hir::BinOp_::BiSub;

error[E0531]: cannot find unit struct/variant or constant `BiMul` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:243:14
|
243 |         ast::BiMul => {
|              ^^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiMul;
| use rustc::hir::BinOp_::BiMul;

error[E0531]: cannot find unit struct/variant or constant `BiDiv` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:246:14
|
246 |         ast::BiDiv => {
|              ^^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiDiv;
| use rustc::hir::BinOp_::BiDiv;

error[E0531]: cannot find unit struct/variant or constant `BiRem` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:249:14
|
249 |         ast::BiRem => {
|              ^^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiRem;
| use rustc::hir::BinOp_::BiRem;

error[E0531]: cannot find unit struct/variant or constant `BiShr` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:252:14
|
252 |         ast::BiShr => {
|              ^^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiShr;
| use rustc::hir::BinOp_::BiShr;

error[E0531]: cannot find unit struct/variant or constant `BiShl` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:255:14
|
255 |         ast::BiShl => {
|              ^^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiShl;
| use rustc::hir::BinOp_::BiShl;

error[E0531]: cannot find unit struct/variant or constant `BiBitOr` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:258:14
|
258 |         ast::BiBitOr  => {
|              ^^^^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiBitOr;
| use rustc::hir::BinOp_::BiBitOr;

error[E0531]: cannot find unit struct/variant or constant `BiBitAnd` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:261:14
|
261 |         ast::BiBitAnd => {
|              ^^^^^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiBitAnd;
| use rustc::hir::BinOp_::BiBitAnd;

error[E0531]: cannot find unit struct/variant or constant `BiBitXor` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:264:14
|
264 |         ast::BiBitXor => {
|              ^^^^^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use rustc::hir::BiBitXor;
| use rustc::hir::BinOp_::BiBitXor;

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:8:1
|
8 | extern crate syntax;
| ^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:9:1
|
9 | extern crate rustc;
| ^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:11:5
|
11 | use syntax::codemap::Span;
|     ^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:12:5
|
12 | use syntax::parse::token;
|     ^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:13:19
|
13 | use syntax::ast::{self, TokenTree};
|                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:14:5
|
14 | use syntax::ptr::P;
|     ^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:15:25
|
15 | use syntax::ext::base::{DummyResult, ExtCtxt, MacResult, MacExpr};
|                         ^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:15:38
|
15 | use syntax::ext::base::{DummyResult, ExtCtxt, MacResult, MacExpr};
|                                      ^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:15:47
|
15 | use syntax::ext::base::{DummyResult, ExtCtxt, MacResult, MacExpr};
|                                               ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:45:28
|
45 | fn expand_bassert(cx: &mut ExtCtxt, sp: Span, args: &[TokenTree])
|                            ^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:45:41
|
45 | fn expand_bassert(cx: &mut ExtCtxt, sp: Span, args: &[TokenTree])
|                                         ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:46:16
|
46 |         -> Box<MacResult + 'static> {
|                ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:51:15
|
51 |     let expr: P<ast::Expr> = parser.parse_expr();
|               ^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:51:17
|
51 |     let expr: P<ast::Expr> = parser.parse_expr();
|                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:53:24
|
53 |     if parser.token != token::Eof {
|                        ^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:55:16
|
55 |         return DummyResult::any(sp);
|                ^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:62:26
|
62 | fn get_fmt_meth(cx: &mut ExtCtxt, expr: P<ast::Expr>) -> P<ast::Expr> {
|                          ^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:62:41
|
62 | fn get_fmt_meth(cx: &mut ExtCtxt, expr: P<ast::Expr>) -> P<ast::Expr> {
|                                         ^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:62:43
|
62 | fn get_fmt_meth(cx: &mut ExtCtxt, expr: P<ast::Expr>) -> P<ast::Expr> {
|                                           ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:62:58
|
62 | fn get_fmt_meth(cx: &mut ExtCtxt, expr: P<ast::Expr>) -> P<ast::Expr> {
|                                                          ^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:62:60
|
62 | fn get_fmt_meth(cx: &mut ExtCtxt, expr: P<ast::Expr>) -> P<ast::Expr> {
|                                                            ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:17
|
69 |                 match (&($given), &($expected)) {
|                 ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:17
|
69 |                 match (&($given), &($expected)) {
|                 ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:23
|
69 |                 match (&($given), &($expected)) {
|                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:23
|
69 |                 match (&($given), &($expected)) {
|                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:23
|
69 |                 match (&($given), &($expected)) {
|                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:24
|
69 |                 match (&($given), &($expected)) {
|                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:24
|
69 |                 match (&($given), &($expected)) {
|                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:24
|
69 |                 match (&($given), &($expected)) {
|                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:25
|
69 |                 match (&($given), &($expected)) {
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:25
|
69 |                 match (&($given), &($expected)) {
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:25
|
69 |                 match (&($given), &($expected)) {
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:32
|
69 |                 match (&($given), &($expected)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:32
|
69 |                 match (&($given), &($expected)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:32
|
69 |                 match (&($given), &($expected)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:33
|
69 |                 match (&($given), &($expected)) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:33
|
69 |                 match (&($given), &($expected)) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:35
|
69 |                 match (&($given), &($expected)) {
|                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:35
|
69 |                 match (&($given), &($expected)) {
|                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:35
|
69 |                 match (&($given), &($expected)) {
|                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:36
|
69 |                 match (&($given), &($expected)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:36
|
69 |                 match (&($given), &($expected)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:36
|
69 |                 match (&($given), &($expected)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:46
|
69 |                 match (&($given), &($expected)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:46
|
69 |                 match (&($given), &($expected)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:46
|
69 |                 match (&($given), &($expected)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:47
|
69 |                 match (&($given), &($expected)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:47
|
69 |                 match (&($given), &($expected)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:47
|
69 |                 match (&($given), &($expected)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:49
|
69 |                 match (&($given), &($expected)) {
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:49
|
69 |                 match (&($given), &($expected)) {
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:49
|
69 |                 match (&($given), &($expected)) {
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:21
|
70 |                     (given_val, expected_val) => {
|                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:21
|
70 |                     (given_val, expected_val) => {
|                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:21
|
70 |                     (given_val, expected_val) => {
|                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:22
|
70 |                     (given_val, expected_val) => {
|                      ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:22
|
70 |                     (given_val, expected_val) => {
|                      ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:31
|
70 |                     (given_val, expected_val) => {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:31
|
70 |                     (given_val, expected_val) => {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:33
|
70 |                     (given_val, expected_val) => {
|                                 ^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:33
|
70 |                     (given_val, expected_val) => {
|                                 ^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:45
|
70 |                     (given_val, expected_val) => {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:45
|
70 |                     (given_val, expected_val) => {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:45
|
70 |                     (given_val, expected_val) => {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:47
|
70 |                     (given_val, expected_val) => {
|                                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:47
|
70 |                     (given_val, expected_val) => {
|                                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:50
|
70 |                     (given_val, expected_val) => {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:50
|
70 |                     (given_val, expected_val) => {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:50
|
70 |                     (given_val, expected_val) => {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:71:25
|
71 |                         let chk = $chk_fun;
|                         ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:71:25
|
71 |                         let chk = $chk_fun;
|                         ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:71:29
|
71 |                         let chk = $chk_fun;
|                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:71:29
|
71 |                         let chk = $chk_fun;
|                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:71:33
|
71 |                         let chk = $chk_fun;
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:71:33
|
71 |                         let chk = $chk_fun;
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:71:43
|
71 |                         let chk = $chk_fun;
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:71:43
|
71 |                         let chk = $chk_fun;
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:25
|
72 |                         if !chk(given_val, expected_val) {
|                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:25
|
72 |                         if !chk(given_val, expected_val) {
|                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:28
|
72 |                         if !chk(given_val, expected_val) {
|                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:28
|
72 |                         if !chk(given_val, expected_val) {
|                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:29
|
72 |                         if !chk(given_val, expected_val) {
|                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:29
|
72 |                         if !chk(given_val, expected_val) {
|                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:32
|
72 |                         if !chk(given_val, expected_val) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:32
|
72 |                         if !chk(given_val, expected_val) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:32
|
72 |                         if !chk(given_val, expected_val) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:33
|
72 |                         if !chk(given_val, expected_val) {
|                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:33
|
72 |                         if !chk(given_val, expected_val) {
|                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:42
|
72 |                         if !chk(given_val, expected_val) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:42
|
72 |                         if !chk(given_val, expected_val) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:44
|
72 |                         if !chk(given_val, expected_val) {
|                                            ^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:44
|
72 |                         if !chk(given_val, expected_val) {
|                                            ^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:56
|
72 |                         if !chk(given_val, expected_val) {
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:56
|
72 |                         if !chk(given_val, expected_val) {
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:56
|
72 |                         if !chk(given_val, expected_val) {
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:58
|
72 |                         if !chk(given_val, expected_val) {
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:58
|
72 |                         if !chk(given_val, expected_val) {
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:58
|
72 |                         if !chk(given_val, expected_val) {
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:73:29
|
73 |                             panic!("assertion failed: {}:\n\
|                             ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:73:29
|
73 |                             panic!("assertion failed: {}:\n\
|                             ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:73:34
|
73 |                             panic!("assertion failed: {}:\n\
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:73:34
|
73 |                             panic!("assertion failed: {}:\n\
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:73:35
|
73 |                             panic!("assertion failed: {}:\n\
|                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:73:35
|
73 |                             panic!("assertion failed: {}:\n\
|                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:73:35
|
73 |                             panic!("assertion failed: {}:\n\
|                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:73:36
|
73 |                               panic!("assertion failed: {}:\n\
|  ____________________________________^
74 | |                                     left:  `{}` = `{:?}`\n\
75 | |                                     right: `{}` = `{:?}`{}",
| |___________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:73:36
|
73 |                               panic!("assertion failed: {}:\n\
|  ____________________________________^
74 | |                                     left:  `{}` = `{:?}`\n\
75 | |                                     right: `{}` = `{:?}`{}",
| |___________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:73:36
|
73 |                               panic!("assertion failed: {}:\n\
|  ____________________________________^
74 | |                                     left:  `{}` = `{:?}`\n\
75 | |                                     right: `{}` = `{:?}`{}",
| |___________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:75:60
|
75 |                                     right: `{}` = `{:?}`{}",
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:75:60
|
75 |                                     right: `{}` = `{:?}`{}",
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:33
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:33
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:42
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:42
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:43
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:43
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:43
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:49
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:49
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:49
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:50
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:50
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:52
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                    ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:52
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                    ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:61
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:61
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:62
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:62
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:62
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:69
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:69
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:69
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:70
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:70
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:72
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:72
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:72
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:73
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                                         ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:73
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                                         ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:82
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:82
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:33
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:33
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:42
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:42
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:43
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:43
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:43
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:53
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:53
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:53
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:54
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:54
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:56
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:56
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:56
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:57
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                         ^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:57
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                         ^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:69
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:69
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:71
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                                       ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:71
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                                       ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:75
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:75
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:75
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:76
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:76
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:78:25
|
78 |                         }
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:78:25
|
78 |                         }
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:78:25
|
78 |                         }
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:79:21
|
79 |                     }
|                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:79:21
|
79 |                     }
|                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:79:21
|
79 |                     }
|                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:80:17
|
80 |                 }
|                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:80:17
|
80 |                 }
|                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:80:17
|
80 |                 }
|                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:68:13
|
68 | /             quote_expr!(cx,
69 | |                 match (&($given), &($expected)) {
70 | |                     (given_val, expected_val) => {
71 | |                         let chk = $chk_fun;
...  |
80 | |                 }
81 | |             )
| |_____________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:68:13
|
68 | /             quote_expr!(cx,
69 | |                 match (&($given), &($expected)) {
70 | |                     (given_val, expected_val) => {
71 | |                         let chk = $chk_fun;
...  |
80 | |                 }
81 | |             )
| |_____________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:68:13
|
68 | /             quote_expr!(cx,
69 | |                 match (&($given), &($expected)) {
70 | |                     (given_val, expected_val) => {
71 | |                         let chk = $chk_fun;
...  |
80 | |                 }
81 | |             )
| |_____________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:25
|
90 |                         match (&($a),) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:25
|
90 |                         match (&($a),) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:31
|
90 |                         match (&($a),) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:31
|
90 |                         match (&($a),) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:31
|
90 |                         match (&($a),) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:32
|
90 |                         match (&($a),) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:32
|
90 |                         match (&($a),) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:32
|
90 |                         match (&($a),) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:33
|
90 |                         match (&($a),) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:33
|
90 |                         match (&($a),) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:33
|
90 |                         match (&($a),) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:36
|
90 |                         match (&($a),) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:36
|
90 |                         match (&($a),) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:36
|
90 |                         match (&($a),) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:37
|
90 |                         match (&($a),) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:37
|
90 |                         match (&($a),) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:38
|
90 |                         match (&($a),) {
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:38
|
90 |                         match (&($a),) {
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:38
|
90 |                         match (&($a),) {
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:40
|
90 |                         match (&($a),) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:40
|
90 |                         match (&($a),) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:40
|
90 |                         match (&($a),) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:91:29
|
91 |                             (a,) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:91:29
|
91 |                             (a,) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:91:29
|
91 |                             (a,) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:91:30
|
91 |                             (a,) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:91:30
|
91 |                             (a,) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:91:31
|
91 |                             (a,) => {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:91:31
|
91 |                             (a,) => {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:91:32
|
91 |                             (a,) => {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:91:32
|
91 |                             (a,) => {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:91:32
|
91 |                             (a,) => {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:91:34
|
91 |                             (a,) => {
|                                  ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:91:34
|
91 |                             (a,) => {
|                                  ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:91:37
|
91 |                             (a,) => {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:91:37
|
91 |                             (a,) => {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:91:37
|
91 |                             (a,) => {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:33
|
92 |                                 if !($fun(*a)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:33
|
92 |                                 if !($fun(*a)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:36
|
92 |                                 if !($fun(*a)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:36
|
92 |                                 if !($fun(*a)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:37
|
92 |                                 if !($fun(*a)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:37
|
92 |                                 if !($fun(*a)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:37
|
92 |                                 if !($fun(*a)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:42
|
92 |                                 if !($fun(*a)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:42
|
92 |                                 if !($fun(*a)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:42
|
92 |                                 if !($fun(*a)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:43
|
92 |                                 if !($fun(*a)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:43
|
92 |                                 if !($fun(*a)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:43
|
92 |                                 if !($fun(*a)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:44
|
92 |                                 if !($fun(*a)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:44
|
92 |                                 if !($fun(*a)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:45
|
92 |                                 if !($fun(*a)) {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:45
|
92 |                                 if !($fun(*a)) {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:45
|
92 |                                 if !($fun(*a)) {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:46
|
92 |                                 if !($fun(*a)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:46
|
92 |                                 if !($fun(*a)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:46
|
92 |                                 if !($fun(*a)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:48
|
92 |                                 if !($fun(*a)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:48
|
92 |                                 if !($fun(*a)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:48
|
92 |                                 if !($fun(*a)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:93:37
|
93 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:93:37
|
93 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:93:42
|
93 |                                     panic!("assertion failed: {}:\n\
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:93:42
|
93 |                                     panic!("assertion failed: {}:\n\
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:93:43
|
93 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:93:43
|
93 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:93:43
|
93 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:93:44
|
93 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
94 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:93:44
|
93 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
94 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:93:44
|
93 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
94 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:94:57
|
94 |                                             {} = {:?}{}",
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:94:57
|
94 |                                             {} = {:?}{}",
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:45
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:45
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:54
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:54
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:55
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:55
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:55
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:61
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:61
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:61
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:62
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:62
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:64
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:64
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:73
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:73
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:74
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:74
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:74
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:77
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:77
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:77
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:78
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:78
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:80
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:80
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:80
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:81
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:81
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:82
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:82
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:84
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                                    ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:84
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                                    ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:88
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:88
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:88
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:89
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:89
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:96:33
|
96 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:96:33
|
96 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:96:33
|
96 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:96:34
|
96 |                                 };
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:96:34
|
96 |                                 };
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:97:29
|
97 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:97:29
|
97 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:97:29
|
97 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:98:25
|
98 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:98:25
|
98 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:98:25
|
98 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:98:26
|
98 |                         };
|                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:98:26
|
98 |                         };
|                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:89:21
|
89 | /                     quote_expr!(cx,
90 | |                         match (&($a),) {
91 | |                             (a,) => {
92 | |                                 if !($fun(*a)) {
...  |
98 | |                         };
99 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:89:21
|
89 | /                     quote_expr!(cx,
90 | |                         match (&($a),) {
91 | |                             (a,) => {
92 | |                                 if !($fun(*a)) {
...  |
98 | |                         };
99 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:89:21
|
89 | /                     quote_expr!(cx,
90 | |                         match (&($a),) {
91 | |                             (a,) => {
92 | |                                 if !($fun(*a)) {
...  |
98 | |                         };
99 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:25
|
104 |                         match (&($a), &($b)) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:25
|
104 |                         match (&($a), &($b)) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:31
|
104 |                         match (&($a), &($b)) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:31
|
104 |                         match (&($a), &($b)) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:31
|
104 |                         match (&($a), &($b)) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:32
|
104 |                         match (&($a), &($b)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:32
|
104 |                         match (&($a), &($b)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:32
|
104 |                         match (&($a), &($b)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:33
|
104 |                         match (&($a), &($b)) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:33
|
104 |                         match (&($a), &($b)) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:33
|
104 |                         match (&($a), &($b)) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:36
|
104 |                         match (&($a), &($b)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:36
|
104 |                         match (&($a), &($b)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:36
|
104 |                         match (&($a), &($b)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:37
|
104 |                         match (&($a), &($b)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:37
|
104 |                         match (&($a), &($b)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:39
|
104 |                         match (&($a), &($b)) {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:39
|
104 |                         match (&($a), &($b)) {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:39
|
104 |                         match (&($a), &($b)) {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:40
|
104 |                         match (&($a), &($b)) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:40
|
104 |                         match (&($a), &($b)) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:40
|
104 |                         match (&($a), &($b)) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:43
|
104 |                         match (&($a), &($b)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:43
|
104 |                         match (&($a), &($b)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:43
|
104 |                         match (&($a), &($b)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:44
|
104 |                         match (&($a), &($b)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:44
|
104 |                         match (&($a), &($b)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:44
|
104 |                         match (&($a), &($b)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:46
|
104 |                         match (&($a), &($b)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:46
|
104 |                         match (&($a), &($b)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:46
|
104 |                         match (&($a), &($b)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:29
|
105 |                             (a, b) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:29
|
105 |                             (a, b) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:29
|
105 |                             (a, b) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:30
|
105 |                             (a, b) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:30
|
105 |                             (a, b) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:31
|
105 |                             (a, b) => {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:31
|
105 |                             (a, b) => {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:33
|
105 |                             (a, b) => {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:33
|
105 |                             (a, b) => {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:34
|
105 |                             (a, b) => {
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:34
|
105 |                             (a, b) => {
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:34
|
105 |                             (a, b) => {
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:36
|
105 |                             (a, b) => {
|                                    ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:36
|
105 |                             (a, b) => {
|                                    ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:39
|
105 |                             (a, b) => {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:39
|
105 |                             (a, b) => {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:39
|
105 |                             (a, b) => {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:33
|
106 |                                 if !($fun(*a, *b)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:33
|
106 |                                 if !($fun(*a, *b)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:36
|
106 |                                 if !($fun(*a, *b)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:36
|
106 |                                 if !($fun(*a, *b)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:37
|
106 |                                 if !($fun(*a, *b)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:37
|
106 |                                 if !($fun(*a, *b)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:37
|
106 |                                 if !($fun(*a, *b)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:42
|
106 |                                 if !($fun(*a, *b)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:42
|
106 |                                 if !($fun(*a, *b)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:42
|
106 |                                 if !($fun(*a, *b)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:43
|
106 |                                 if !($fun(*a, *b)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:43
|
106 |                                 if !($fun(*a, *b)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:43
|
106 |                                 if !($fun(*a, *b)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:44
|
106 |                                 if !($fun(*a, *b)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:44
|
106 |                                 if !($fun(*a, *b)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:45
|
106 |                                 if !($fun(*a, *b)) {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:45
|
106 |                                 if !($fun(*a, *b)) {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:47
|
106 |                                 if !($fun(*a, *b)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:47
|
106 |                                 if !($fun(*a, *b)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:47
|
106 |                                 if !($fun(*a, *b)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:48
|
106 |                                 if !($fun(*a, *b)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:48
|
106 |                                 if !($fun(*a, *b)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:49
|
106 |                                 if !($fun(*a, *b)) {
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:49
|
106 |                                 if !($fun(*a, *b)) {
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:49
|
106 |                                 if !($fun(*a, *b)) {
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:50
|
106 |                                 if !($fun(*a, *b)) {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:50
|
106 |                                 if !($fun(*a, *b)) {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:50
|
106 |                                 if !($fun(*a, *b)) {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:52
|
106 |                                 if !($fun(*a, *b)) {
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:52
|
106 |                                 if !($fun(*a, *b)) {
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:52
|
106 |                                 if !($fun(*a, *b)) {
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:107:37
|
107 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:107:37
|
107 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:107:42
|
107 |                                     panic!("assertion failed: {}:\n\
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:107:42
|
107 |                                     panic!("assertion failed: {}:\n\
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:107:43
|
107 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:107:43
|
107 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:107:43
|
107 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:107:44
|
107 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
108 | |                                             {} = {:?}\n\
109 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:107:44
|
107 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
108 | |                                             {} = {:?}\n\
109 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:107:44
|
107 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
108 | |                                             {} = {:?}\n\
109 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:109:57
|
109 |                                             {} = {:?}{}",
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:109:57
|
109 |                                             {} = {:?}{}",
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:45
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:45
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:54
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:54
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:55
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:55
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:55
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:61
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:61
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:61
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:62
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:62
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:64
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:64
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:73
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:73
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:74
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:74
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:74
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:77
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:77
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:77
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:78
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:78
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:80
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:80
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:80
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:81
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:81
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:82
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:82
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:84
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                    ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:84
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                    ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:93
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:93
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:94
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:94
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:94
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:97
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:97
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:97
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:98
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:98
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:111:45
|
111 |                                             *b, rest);
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:111:45
|
111 |                                             *b, rest);
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:111:45
|
111 |                                             *b, rest);
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:111:46
|
111 |                                             *b, rest);
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:111:46
|
111 |                                             *b, rest);
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:111:47
|
111 |                                             *b, rest);
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:111:47
|
111 |                                             *b, rest);
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:111:49
|
111 |                                             *b, rest);
|                                                 ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:111:49
|
111 |                                             *b, rest);
|                                                 ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:111:53
|
111 |                                             *b, rest);
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:111:53
|
111 |                                             *b, rest);
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:111:53
|
111 |                                             *b, rest);
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:111:54
|
111 |                                             *b, rest);
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:111:54
|
111 |                                             *b, rest);
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:112:33
|
112 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:112:33
|
112 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:112:33
|
112 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:112:34
|
112 |                                 };
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:112:34
|
112 |                                 };
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:113:29
|
113 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:113:29
|
113 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:113:29
|
113 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:114:25
|
114 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:114:25
|
114 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:114:25
|
114 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:114:26
|
114 |                         };
|                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:114:26
|
114 |                         };
|                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:103:21
|
103 | /                     quote_expr!(cx,
104 | |                         match (&($a), &($b)) {
105 | |                             (a, b) => {
106 | |                                 if !($fun(*a, *b)) {
...   |
114 | |                         };
115 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:103:21
|
103 | /                     quote_expr!(cx,
104 | |                         match (&($a), &($b)) {
105 | |                             (a, b) => {
106 | |                                 if !($fun(*a, *b)) {
...   |
114 | |                         };
115 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:103:21
|
103 | /                     quote_expr!(cx,
104 | |                         match (&($a), &($b)) {
105 | |                             (a, b) => {
106 | |                                 if !($fun(*a, *b)) {
...   |
114 | |                         };
115 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:25
|
120 |                         match (&($a), &($b), &($c)) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:25
|
120 |                         match (&($a), &($b), &($c)) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:31
|
120 |                         match (&($a), &($b), &($c)) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:31
|
120 |                         match (&($a), &($b), &($c)) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:31
|
120 |                         match (&($a), &($b), &($c)) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:32
|
120 |                         match (&($a), &($b), &($c)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:32
|
120 |                         match (&($a), &($b), &($c)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:32
|
120 |                         match (&($a), &($b), &($c)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:33
|
120 |                         match (&($a), &($b), &($c)) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:33
|
120 |                         match (&($a), &($b), &($c)) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:33
|
120 |                         match (&($a), &($b), &($c)) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:36
|
120 |                         match (&($a), &($b), &($c)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:36
|
120 |                         match (&($a), &($b), &($c)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:36
|
120 |                         match (&($a), &($b), &($c)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:37
|
120 |                         match (&($a), &($b), &($c)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:37
|
120 |                         match (&($a), &($b), &($c)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:39
|
120 |                         match (&($a), &($b), &($c)) {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:39
|
120 |                         match (&($a), &($b), &($c)) {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:39
|
120 |                         match (&($a), &($b), &($c)) {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:40
|
120 |                         match (&($a), &($b), &($c)) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:40
|
120 |                         match (&($a), &($b), &($c)) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:40
|
120 |                         match (&($a), &($b), &($c)) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:43
|
120 |                         match (&($a), &($b), &($c)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:43
|
120 |                         match (&($a), &($b), &($c)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:43
|
120 |                         match (&($a), &($b), &($c)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:44
|
120 |                         match (&($a), &($b), &($c)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:44
|
120 |                         match (&($a), &($b), &($c)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:46
|
120 |                         match (&($a), &($b), &($c)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:46
|
120 |                         match (&($a), &($b), &($c)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:46
|
120 |                         match (&($a), &($b), &($c)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:47
|
120 |                         match (&($a), &($b), &($c)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:47
|
120 |                         match (&($a), &($b), &($c)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:47
|
120 |                         match (&($a), &($b), &($c)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:50
|
120 |                         match (&($a), &($b), &($c)) {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:50
|
120 |                         match (&($a), &($b), &($c)) {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:50
|
120 |                         match (&($a), &($b), &($c)) {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:51
|
120 |                         match (&($a), &($b), &($c)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:51
|
120 |                         match (&($a), &($b), &($c)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:51
|
120 |                         match (&($a), &($b), &($c)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:53
|
120 |                         match (&($a), &($b), &($c)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:53
|
120 |                         match (&($a), &($b), &($c)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:53
|
120 |                         match (&($a), &($b), &($c)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:29
|
121 |                             (a, b, c) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:29
|
121 |                             (a, b, c) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:29
|
121 |                             (a, b, c) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:30
|
121 |                             (a, b, c) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:30
|
121 |                             (a, b, c) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:31
|
121 |                             (a, b, c) => {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:31
|
121 |                             (a, b, c) => {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:33
|
121 |                             (a, b, c) => {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:33
|
121 |                             (a, b, c) => {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:34
|
121 |                             (a, b, c) => {
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:34
|
121 |                             (a, b, c) => {
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:36
|
121 |                             (a, b, c) => {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:36
|
121 |                             (a, b, c) => {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:37
|
121 |                             (a, b, c) => {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:37
|
121 |                             (a, b, c) => {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:37
|
121 |                             (a, b, c) => {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:39
|
121 |                             (a, b, c) => {
|                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:39
|
121 |                             (a, b, c) => {
|                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:42
|
121 |                             (a, b, c) => {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:42
|
121 |                             (a, b, c) => {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:42
|
121 |                             (a, b, c) => {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:33
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:33
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:36
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:36
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:37
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:37
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:37
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:42
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:42
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:42
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:43
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:43
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:43
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:44
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:44
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:45
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:45
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:47
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:47
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:47
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:48
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:48
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:49
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:49
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:51
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:51
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:51
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:52
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:52
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:53
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:53
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:53
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:54
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:54
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:54
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:56
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:56
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:56
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:123:37
|
123 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:123:37
|
123 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:123:42
|
123 |                                     panic!("assertion failed: {}:\n\
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:123:42
|
123 |                                     panic!("assertion failed: {}:\n\
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:123:43
|
123 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:123:43
|
123 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:123:43
|
123 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:123:44
|
123 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
124 | |                                             {} = {:?}\n\
125 | |                                             {} = {:?}\n\
126 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:123:44
|
123 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
124 | |                                             {} = {:?}\n\
125 | |                                             {} = {:?}\n\
126 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:123:44
|
123 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
124 | |                                             {} = {:?}\n\
125 | |                                             {} = {:?}\n\
126 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:126:57
|
126 |                                             {} = {:?}{}",
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:126:57
|
126 |                                             {} = {:?}{}",
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:45
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:45
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:54
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:54
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:55
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:55
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:55
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:61
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:61
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:61
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:62
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:62
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:64
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:64
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:73
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:73
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:74
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:74
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:74
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:77
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:77
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:77
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:78
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:78
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:80
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:80
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:80
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:81
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:81
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:82
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:82
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:84
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                    ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:84
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                    ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:93
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:93
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:94
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:94
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:94
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:97
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:97
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:97
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:98
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:98
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:45
|
128 |                                             *b, stringify!($c), *c, rest);
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:45
|
128 |                                             *b, stringify!($c), *c, rest);
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:45
|
128 |                                             *b, stringify!($c), *c, rest);
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:46
|
128 |                                             *b, stringify!($c), *c, rest);
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:46
|
128 |                                             *b, stringify!($c), *c, rest);
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:47
|
128 |                                             *b, stringify!($c), *c, rest);
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:47
|
128 |                                             *b, stringify!($c), *c, rest);
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:49
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:49
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:58
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:58
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:59
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:59
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:59
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:62
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:62
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:62
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:63
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:63
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:65
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:65
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:65
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:66
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:66
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:67
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:67
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:69
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                                     ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:69
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                                     ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:73
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:73
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:73
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:74
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:74
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:129:33
|
129 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:129:33
|
129 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:129:33
|
129 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:129:34
|
129 |                                 };
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:129:34
|
129 |                                 };
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:130:29
|
130 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:130:29
|
130 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:130:29
|
130 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:131:25
|
131 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:131:25
|
131 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:131:25
|
131 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:131:26
|
131 |                         };
|                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:131:26
|
131 |                         };
|                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:119:21
|
119 | /                     quote_expr!(cx,
120 | |                         match (&($a), &($b), &($c)) {
121 | |                             (a, b, c) => {
122 | |                                 if !($fun(*a, *b, *c)) {
...   |
131 | |                         };
132 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:119:21
|
119 | /                     quote_expr!(cx,
120 | |                         match (&($a), &($b), &($c)) {
121 | |                             (a, b, c) => {
122 | |                                 if !($fun(*a, *b, *c)) {
...   |
131 | |                         };
132 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:119:21
|
119 | /                     quote_expr!(cx,
120 | |                         match (&($a), &($b), &($c)) {
121 | |                             (a, b, c) => {
122 | |                                 if !($fun(*a, *b, *c)) {
...   |
131 | |                         };
132 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:25
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:25
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:31
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:31
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:31
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:32
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:32
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:32
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:33
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:33
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:33
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:36
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:36
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:36
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:37
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:37
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:39
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:39
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:39
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:40
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:40
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:40
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:43
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:43
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:43
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:44
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:44
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:46
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:46
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:46
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:47
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:47
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:47
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:50
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:50
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:50
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:51
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:51
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:53
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:53
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:53
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:54
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:54
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:54
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:57
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:57
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:57
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:58
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:58
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:58
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:60
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:60
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:60
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:29
|
138 |                             (a, b, c, d) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:29
|
138 |                             (a, b, c, d) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:29
|
138 |                             (a, b, c, d) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:30
|
138 |                             (a, b, c, d) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:30
|
138 |                             (a, b, c, d) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:31
|
138 |                             (a, b, c, d) => {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:31
|
138 |                             (a, b, c, d) => {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:33
|
138 |                             (a, b, c, d) => {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:33
|
138 |                             (a, b, c, d) => {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:34
|
138 |                             (a, b, c, d) => {
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:34
|
138 |                             (a, b, c, d) => {
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:36
|
138 |                             (a, b, c, d) => {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:36
|
138 |                             (a, b, c, d) => {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:37
|
138 |                             (a, b, c, d) => {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:37
|
138 |                             (a, b, c, d) => {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:39
|
138 |                             (a, b, c, d) => {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:39
|
138 |                             (a, b, c, d) => {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:40
|
138 |                             (a, b, c, d) => {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:40
|
138 |                             (a, b, c, d) => {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:40
|
138 |                             (a, b, c, d) => {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:42
|
138 |                             (a, b, c, d) => {
|                                          ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:42
|
138 |                             (a, b, c, d) => {
|                                          ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:45
|
138 |                             (a, b, c, d) => {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:45
|
138 |                             (a, b, c, d) => {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:45
|
138 |                             (a, b, c, d) => {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:33
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:33
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:36
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:36
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:37
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:37
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:37
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:42
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:42
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:42
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:43
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:43
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:43
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:44
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:44
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:45
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:45
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:47
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:47
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:47
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:48
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:48
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:49
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:49
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:51
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:51
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:51
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:52
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:52
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:53
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:53
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:55
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:55
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:55
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:56
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:56
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:57
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:57
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:57
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:58
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:58
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:58
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:60
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:60
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:60
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:140:37
|
140 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:140:37
|
140 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:140:42
|
140 |                                     panic!("assertion failed: {}:\n\
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:140:42
|
140 |                                     panic!("assertion failed: {}:\n\
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:140:43
|
140 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:140:43
|
140 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:140:43
|
140 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:140:44
|
140 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
141 | |                                             {} = {:?}\n\
142 | |                                             {} = {:?}\n\
143 | |                                             {} = {:?}\n\
144 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:140:44
|
140 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
141 | |                                             {} = {:?}\n\
142 | |                                             {} = {:?}\n\
143 | |                                             {} = {:?}\n\
144 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:140:44
|
140 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
141 | |                                             {} = {:?}\n\
142 | |                                             {} = {:?}\n\
143 | |                                             {} = {:?}\n\
144 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:144:57
|
144 |                                             {} = {:?}{}",
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:144:57
|
144 |                                             {} = {:?}{}",
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:45
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:45
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:54
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:54
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:55
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:55
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:55
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:61
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:61
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:61
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:62
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:62
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:64
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:64
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:73
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:73
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:74
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:74
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:74
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:77
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:77
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:77
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:78
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:78
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:80
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:80
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:80
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:81
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:81
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:82
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:82
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:84
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                    ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:84
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                    ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:93
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:93
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:94
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:94
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:94
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:97
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:97
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:97
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:98
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:98
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:45
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:45
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:45
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:46
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:46
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:47
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:47
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:49
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:49
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:58
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:58
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:59
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:59
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:59
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:62
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:62
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:62
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:63
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:63
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:65
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:65
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:65
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:66
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:66
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:67
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:67
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:69
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                     ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:69
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                     ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:78
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:78
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:79
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:79
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:79
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:82
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:82
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:82
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:83
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:83
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:85
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:85
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:85
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:86
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:86
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:87
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:87
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:89
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                         ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:89
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                         ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:93
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:93
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:93
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:94
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:94
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:147:33
|
147 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:147:33
|
147 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:147:33
|
147 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:147:34
|
147 |                                 };
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:147:34
|
147 |                                 };
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:148:29
|
148 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:148:29
|
148 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:148:29
|
148 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:149:25
|
149 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:149:25
|
149 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:149:25
|
149 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:149:26
|
149 |                         };
|                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:149:26
|
149 |                         };
|                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:136:21
|
136 | /                     quote_expr!(cx,
137 | |                         match (&($a), &($b), &($c), &($d)) {
138 | |                             (a, b, c, d) => {
139 | |                                 if !($fun(*a, *b, *c, *d)) {
...   |
149 | |                         };
150 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:136:21
|
136 | /                     quote_expr!(cx,
137 | |                         match (&($a), &($b), &($c), &($d)) {
138 | |                             (a, b, c, d) => {
139 | |                                 if !($fun(*a, *b, *c, *d)) {
...   |
149 | |                         };
150 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:136:21
|
136 | /                     quote_expr!(cx,
137 | |                         match (&($a), &($b), &($c), &($d)) {
138 | |                             (a, b, c, d) => {
139 | |                                 if !($fun(*a, *b, *c, *d)) {
...   |
149 | |                         };
150 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:25
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:25
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:31
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:31
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:31
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:32
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:32
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:32
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:33
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:33
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:33
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:36
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:36
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:36
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:37
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:37
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:39
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:39
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:39
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:40
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:40
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:40
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:43
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:43
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:43
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:44
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:44
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:46
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:46
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:46
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:47
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:47
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:47
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:50
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:50
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:50
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:51
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:51
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:53
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:53
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:53
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:54
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:54
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:54
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:57
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:57
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:57
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:58
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:58
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:60
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:60
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:60
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:61
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:61
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:61
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:64
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:64
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:64
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:65
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:65
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:65
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:67
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:67
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:67
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:29
|
156 |                             (a, b, c, d, e) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:29
|
156 |                             (a, b, c, d, e) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:29
|
156 |                             (a, b, c, d, e) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:30
|
156 |                             (a, b, c, d, e) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:30
|
156 |                             (a, b, c, d, e) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:31
|
156 |                             (a, b, c, d, e) => {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:31
|
156 |                             (a, b, c, d, e) => {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:33
|
156 |                             (a, b, c, d, e) => {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:33
|
156 |                             (a, b, c, d, e) => {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:34
|
156 |                             (a, b, c, d, e) => {
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:34
|
156 |                             (a, b, c, d, e) => {
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:36
|
156 |                             (a, b, c, d, e) => {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:36
|
156 |                             (a, b, c, d, e) => {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:37
|
156 |                             (a, b, c, d, e) => {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:37
|
156 |                             (a, b, c, d, e) => {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:39
|
156 |                             (a, b, c, d, e) => {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:39
|
156 |                             (a, b, c, d, e) => {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:40
|
156 |                             (a, b, c, d, e) => {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:40
|
156 |                             (a, b, c, d, e) => {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:42
|
156 |                             (a, b, c, d, e) => {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:42
|
156 |                             (a, b, c, d, e) => {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:43
|
156 |                             (a, b, c, d, e) => {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:43
|
156 |                             (a, b, c, d, e) => {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:43
|
156 |                             (a, b, c, d, e) => {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:45
|
156 |                             (a, b, c, d, e) => {
|                                             ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:45
|
156 |                             (a, b, c, d, e) => {
|                                             ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:48
|
156 |                             (a, b, c, d, e) => {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:48
|
156 |                             (a, b, c, d, e) => {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:48
|
156 |                             (a, b, c, d, e) => {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:33
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:33
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:36
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:36
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:37
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:37
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:37
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:42
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:42
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:42
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:43
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:43
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:43
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:44
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:44
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:45
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:45
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:47
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:47
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:47
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:48
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:48
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:49
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:49
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:51
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:51
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:51
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:52
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:52
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:53
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:53
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:55
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:55
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:55
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:56
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:56
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:57
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:57
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:59
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:59
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:59
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:60
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:60
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:61
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:61
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:61
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:62
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:62
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:62
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:64
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:64
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:64
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:158:37
|
158 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:158:37
|
158 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:158:42
|
158 |                                     panic!("assertion failed: {}:\n\
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:158:42
|
158 |                                     panic!("assertion failed: {}:\n\
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:158:43
|
158 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:158:43
|
158 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:158:43
|
158 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:158:44
|
158 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
159 | |                                             {} = {:?}\n\
160 | |                                             {} = {:?}\n\
161 | |                                             {} = {:?}\n\
162 | |                                             {} = {:?}\n\
163 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:158:44
|
158 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
159 | |                                             {} = {:?}\n\
160 | |                                             {} = {:?}\n\
161 | |                                             {} = {:?}\n\
162 | |                                             {} = {:?}\n\
163 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:158:44
|
158 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
159 | |                                             {} = {:?}\n\
160 | |                                             {} = {:?}\n\
161 | |                                             {} = {:?}\n\
162 | |                                             {} = {:?}\n\
163 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:163:57
|
163 |                                             {} = {:?}{}",
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:163:57
|
163 |                                             {} = {:?}{}",
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:45
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:45
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:54
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:54
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:55
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:55
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:55
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:61
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:61
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:61
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:62
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:62
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:64
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:64
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:73
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:73
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:74
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:74
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:74
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:77
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:77
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:77
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:78
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:78
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:80
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:80
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:80
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:81
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:81
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:82
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:82
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:84
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                    ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:84
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                    ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:93
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:93
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:94
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:94
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:94
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:97
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:97
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:97
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:98
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:98
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:45
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:45
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:45
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:46
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:46
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:47
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:47
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:49
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:49
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:58
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:58
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:59
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:59
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:59
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:62
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:62
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:62
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:63
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:63
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:65
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:65
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:65
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:66
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:66
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:67
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:67
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:69
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                     ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:69
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                     ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:78
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:78
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:79
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:79
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:79
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:82
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:82
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:82
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:83
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:83
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:85
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:85
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:85
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:86
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:86
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:87
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:87
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:45
|
166 |                                             stringify!($e), *e, rest);
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:45
|
166 |                                             stringify!($e), *e, rest);
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:54
|
166 |                                             stringify!($e), *e, rest);
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:54
|
166 |                                             stringify!($e), *e, rest);
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:55
|
166 |                                             stringify!($e), *e, rest);
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:55
|
166 |                                             stringify!($e), *e, rest);
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:55
|
166 |                                             stringify!($e), *e, rest);
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:58
|
166 |                                             stringify!($e), *e, rest);
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:58
|
166 |                                             stringify!($e), *e, rest);
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:58
|
166 |                                             stringify!($e), *e, rest);
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:59
|
166 |                                             stringify!($e), *e, rest);
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:59
|
166 |                                             stringify!($e), *e, rest);
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:61
|
166 |                                             stringify!($e), *e, rest);
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:61
|
166 |                                             stringify!($e), *e, rest);
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:61
|
166 |                                             stringify!($e), *e, rest);
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:62
|
166 |                                             stringify!($e), *e, rest);
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:62
|
166 |                                             stringify!($e), *e, rest);
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:63
|
166 |                                             stringify!($e), *e, rest);
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:63
|
166 |                                             stringify!($e), *e, rest);
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:65
|
166 |                                             stringify!($e), *e, rest);
|                                                                 ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:65
|
166 |                                             stringify!($e), *e, rest);
|                                                                 ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:69
|
166 |                                             stringify!($e), *e, rest);
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:69
|
166 |                                             stringify!($e), *e, rest);
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:69
|
166 |                                             stringify!($e), *e, rest);
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:70
|
166 |                                             stringify!($e), *e, rest);
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:70
|
166 |                                             stringify!($e), *e, rest);
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:167:33
|
167 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:167:33
|
167 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:167:33
|
167 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:167:34
|
167 |                                 };
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:167:34
|
167 |                                 };
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:168:29
|
168 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:168:29
|
168 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:168:29
|
168 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:169:25
|
169 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:169:25
|
169 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:169:25
|
169 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:169:26
|
169 |                         };
|                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:169:26
|
169 |                         };
|                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:154:21
|
154 | /                     quote_expr!(cx,
155 | |                         match (&($a), &($b), &($c), &($d), &($e)) {
156 | |                             (a, b, c, d, e) => {
157 | |                                 if !($fun(*a, *b, *c, *d, *e)) {
...   |
169 | |                         };
170 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:154:21
|
154 | /                     quote_expr!(cx,
155 | |                         match (&($a), &($b), &($c), &($d), &($e)) {
156 | |                             (a, b, c, d, e) => {
157 | |                                 if !($fun(*a, *b, *c, *d, *e)) {
...   |
169 | |                         };
170 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:154:21
|
154 | /                     quote_expr!(cx,
155 | |                         match (&($a), &($b), &($c), &($d), &($e)) {
156 | |                             (a, b, c, d, e) => {
157 | |                                 if !($fun(*a, *b, *c, *d, *e)) {
...   |
169 | |                         };
170 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:25
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:25
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:31
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:31
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:31
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:32
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:32
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:32
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:33
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:33
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:33
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:36
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:36
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:36
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:37
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:37
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:39
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:39
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:39
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:40
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:40
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:40
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:43
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:43
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:43
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:44
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:44
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:46
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:46
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:46
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:47
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:47
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:47
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:50
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:50
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:50
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:51
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:51
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:53
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:53
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:53
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:54
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:54
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:54
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:57
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:57
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:57
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:58
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:58
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:60
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:60
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:60
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:61
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:61
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:61
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:64
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:64
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:64
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:65
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:65
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:67
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:67
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:67
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:68
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:68
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:68
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:71
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:71
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:71
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:72
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:72
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:72
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:74
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:74
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:74
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:29
|
176 |                             (a, b, c, d, e, f) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:29
|
176 |                             (a, b, c, d, e, f) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:29
|
176 |                             (a, b, c, d, e, f) => {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:30
|
176 |                             (a, b, c, d, e, f) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:30
|
176 |                             (a, b, c, d, e, f) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:31
|
176 |                             (a, b, c, d, e, f) => {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:31
|
176 |                             (a, b, c, d, e, f) => {
|                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:33
|
176 |                             (a, b, c, d, e, f) => {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:33
|
176 |                             (a, b, c, d, e, f) => {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:34
|
176 |                             (a, b, c, d, e, f) => {
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:34
|
176 |                             (a, b, c, d, e, f) => {
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:36
|
176 |                             (a, b, c, d, e, f) => {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:36
|
176 |                             (a, b, c, d, e, f) => {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:37
|
176 |                             (a, b, c, d, e, f) => {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:37
|
176 |                             (a, b, c, d, e, f) => {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:39
|
176 |                             (a, b, c, d, e, f) => {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:39
|
176 |                             (a, b, c, d, e, f) => {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:40
|
176 |                             (a, b, c, d, e, f) => {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:40
|
176 |                             (a, b, c, d, e, f) => {
|                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:42
|
176 |                             (a, b, c, d, e, f) => {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:42
|
176 |                             (a, b, c, d, e, f) => {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:43
|
176 |                             (a, b, c, d, e, f) => {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:43
|
176 |                             (a, b, c, d, e, f) => {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:45
|
176 |                             (a, b, c, d, e, f) => {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:45
|
176 |                             (a, b, c, d, e, f) => {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:46
|
176 |                             (a, b, c, d, e, f) => {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:46
|
176 |                             (a, b, c, d, e, f) => {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:46
|
176 |                             (a, b, c, d, e, f) => {
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:48
|
176 |                             (a, b, c, d, e, f) => {
|                                                ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:48
|
176 |                             (a, b, c, d, e, f) => {
|                                                ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:51
|
176 |                             (a, b, c, d, e, f) => {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:51
|
176 |                             (a, b, c, d, e, f) => {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:51
|
176 |                             (a, b, c, d, e, f) => {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:33
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:33
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:36
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:36
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:37
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:37
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:37
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:42
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:42
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:42
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:43
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:43
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:43
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:44
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:44
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:45
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:45
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:47
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:47
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:47
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:48
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:48
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:49
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:49
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:51
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:51
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:51
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:52
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:52
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:53
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:53
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:55
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:55
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:55
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:56
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:56
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:57
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:57
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:59
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:59
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:59
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:60
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:60
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:61
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:61
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:63
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:63
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:63
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:64
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:64
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:65
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:65
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:65
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:66
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:66
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:66
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:68
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:68
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:68
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:178:37
|
178 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:178:37
|
178 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:178:42
|
178 |                                     panic!("assertion failed: {}:\n\
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:178:42
|
178 |                                     panic!("assertion failed: {}:\n\
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:178:43
|
178 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:178:43
|
178 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:178:43
|
178 |                                     panic!("assertion failed: {}:\n\
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:178:44
|
178 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
179 | |                                             {} = {:?}\n\
180 | |                                             {} = {:?}\n\
181 | |                                             {} = {:?}\n\
182 | |                                             {} = {:?}\n\
183 | |                                             {} = {:?}\n\
184 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:178:44
|
178 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
179 | |                                             {} = {:?}\n\
180 | |                                             {} = {:?}\n\
181 | |                                             {} = {:?}\n\
182 | |                                             {} = {:?}\n\
183 | |                                             {} = {:?}\n\
184 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:178:44
|
178 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
179 | |                                             {} = {:?}\n\
180 | |                                             {} = {:?}\n\
181 | |                                             {} = {:?}\n\
182 | |                                             {} = {:?}\n\
183 | |                                             {} = {:?}\n\
184 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:184:57
|
184 |                                             {} = {:?}{}",
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:184:57
|
184 |                                             {} = {:?}{}",
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:185:45
|
185 |                                             stringify!($expr),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:185:45
|
185 |                                             stringify!($expr),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:185:54
|
185 |                                             stringify!($expr),
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:185:54
|
185 |                                             stringify!($expr),
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:185:55
|
185 |                                             stringify!($expr),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:185:55
|
185 |                                             stringify!($expr),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:185:55
|
185 |                                             stringify!($expr),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:185:61
|
185 |                                             stringify!($expr),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:185:61
|
185 |                                             stringify!($expr),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:185:61
|
185 |                                             stringify!($expr),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:185:62
|
185 |                                             stringify!($expr),
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:185:62
|
185 |                                             stringify!($expr),
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:45
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:45
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:54
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:54
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:55
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:55
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:55
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:58
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:58
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:58
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:59
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:59
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:61
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:61
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:61
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:62
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:62
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:63
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:63
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:65
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:65
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:74
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:74
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:75
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:75
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:75
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:78
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:78
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:78
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:79
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:79
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:81
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:81
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:81
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:82
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:82
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:83
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:83
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:85
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                     ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:85
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                     ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:94
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:94
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:95
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:95
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:95
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:98
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:98
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:98
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:99
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:99
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:45
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:45
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:45
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:46
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:46
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:47
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:47
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:49
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:49
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:58
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:58
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:59
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:59
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:59
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:62
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:62
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:62
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:63
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:63
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:65
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:65
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:65
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:66
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:66
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:67
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:67
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:69
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                     ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:69
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                     ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:78
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:78
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:79
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:79
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:79
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:82
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:82
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:82
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:83
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:83
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:85
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:85
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:85
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:86
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:86
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:87
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:87
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:45
|
188 |                                             stringify!($f), *f, rest);
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:45
|
188 |                                             stringify!($f), *f, rest);
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:54
|
188 |                                             stringify!($f), *f, rest);
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:54
|
188 |                                             stringify!($f), *f, rest);
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:55
|
188 |                                             stringify!($f), *f, rest);
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:55
|
188 |                                             stringify!($f), *f, rest);
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:55
|
188 |                                             stringify!($f), *f, rest);
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:58
|
188 |                                             stringify!($f), *f, rest);
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:58
|
188 |                                             stringify!($f), *f, rest);
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:58
|
188 |                                             stringify!($f), *f, rest);
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:59
|
188 |                                             stringify!($f), *f, rest);
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:59
|
188 |                                             stringify!($f), *f, rest);
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:61
|
188 |                                             stringify!($f), *f, rest);
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:61
|
188 |                                             stringify!($f), *f, rest);
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:61
|
188 |                                             stringify!($f), *f, rest);
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:62
|
188 |                                             stringify!($f), *f, rest);
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:62
|
188 |                                             stringify!($f), *f, rest);
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:63
|
188 |                                             stringify!($f), *f, rest);
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:63
|
188 |                                             stringify!($f), *f, rest);
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:65
|
188 |                                             stringify!($f), *f, rest);
|                                                                 ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:65
|
188 |                                             stringify!($f), *f, rest);
|                                                                 ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:69
|
188 |                                             stringify!($f), *f, rest);
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:69
|
188 |                                             stringify!($f), *f, rest);
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:69
|
188 |                                             stringify!($f), *f, rest);
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:70
|
188 |                                             stringify!($f), *f, rest);
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:70
|
188 |                                             stringify!($f), *f, rest);
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:189:33
|
189 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:189:33
|
189 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:189:33
|
189 |                                 };
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:189:34
|
189 |                                 };
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:189:34
|
189 |                                 };
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:190:29
|
190 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:190:29
|
190 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:190:29
|
190 |                             }
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:191:25
|
191 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:191:25
|
191 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:191:25
|
191 |                         };
|                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:191:26
|
191 |                         };
|                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:191:26
|
191 |                         };
|                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:174:21
|
174 | /                     quote_expr!(cx,
175 | |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
176 | |                             (a, b, c, d, e, f) => {
177 | |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
...   |
191 | |                         };
192 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:174:21
|
174 | /                     quote_expr!(cx,
175 | |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
176 | |                             (a, b, c, d, e, f) => {
177 | |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
...   |
191 | |                         };
192 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:174:21
|
174 | /                     quote_expr!(cx,
175 | |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
176 | |                             (a, b, c, d, e, f) => {
177 | |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
...   |
191 | |                         };
192 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:199:17
|
199 |                 if !($expr) {
|                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:199:17
|
199 |                 if !($expr) {
|                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:199:20
|
199 |                 if !($expr) {
|                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:199:20
|
199 |                 if !($expr) {
|                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:199:21
|
199 |                 if !($expr) {
|                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:199:21
|
199 |                 if !($expr) {
|                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:199:21
|
199 |                 if !($expr) {
|                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:199:27
|
199 |                 if !($expr) {
|                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:199:27
|
199 |                 if !($expr) {
|                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:199:27
|
199 |                 if !($expr) {
|                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:199:29
|
199 |                 if !($expr) {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:199:29
|
199 |                 if !($expr) {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:199:29
|
199 |                 if !($expr) {
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:21
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:21
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:26
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:26
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:27
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:27
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:27
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:28
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                            ^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:28
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                            ^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:34
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:34
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:35
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:35
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:35
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:36
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                    ^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:36
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                    ^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:36
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                    ^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:56
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:56
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:58
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                          ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:58
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                          ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:67
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:67
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:68
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:68
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:68
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:74
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:74
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:74
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:75
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:75
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:77
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                             ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:77
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                             ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:77
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                             ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:81
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:81
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:81
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:82
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:82
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:84
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                                    ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:84
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                                    ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:88
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:88
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:88
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:89
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:89
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:201:17
|
201 |                 }
|                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:201:17
|
201 |                 }
|                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:201:17
|
201 |                 }
|                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:198:13
|
198 | /             quote_expr!(cx,
199 | |                 if !($expr) {
200 | |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
201 | |                 }
202 | |             )
| |_____________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:198:13
|
198 | /             quote_expr!(cx,
199 | |                 if !($expr) {
200 | |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
201 | |                 }
202 | |             )
| |_____________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:198:13
|
198 | /             quote_expr!(cx,
199 | |                 if !($expr) {
200 | |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
201 | |                 }
202 | |             )
| |_____________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:21
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:21
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:21
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:22
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:22
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:24
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                        ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:24
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                        ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:28
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:28
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:30
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:30
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:30
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:31
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:31
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:33
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                 ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:33
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                 ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:36
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                    ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:36
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                    ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:38
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                      ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:38
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                      ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:41
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:41
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:43
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                           ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:43
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                           ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:52
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:52
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:52
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:54
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:54
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:54
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:69
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:69
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:69
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:5
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:5
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:5
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:211:28
|
211 | fn get_check_func(cx: &mut ExtCtxt, cmp: ast::BinOp) -> P<ast::Expr> {
|                            ^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:211:42
|
211 | fn get_check_func(cx: &mut ExtCtxt, cmp: ast::BinOp) -> P<ast::Expr> {
|                                          ^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:211:57
|
211 | fn get_check_func(cx: &mut ExtCtxt, cmp: ast::BinOp) -> P<ast::Expr> {
|                                                         ^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:211:59
|
211 | fn get_check_func(cx: &mut ExtCtxt, cmp: ast::BinOp) -> P<ast::Expr> {
|                                                           ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:29
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:29
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:29
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:31
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:31
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:34
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:34
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:37
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:37
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:38
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:38
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:39
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:39
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:41
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:41
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:43
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:43
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:44
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:44
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:44
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:45
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:45
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:46
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:46
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:48
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:48
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:48
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:49
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:49
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:50
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:50
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:52
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:52
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:53
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:53
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:55
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:55
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:55
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:56
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:56
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:57
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:57
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:57
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:59
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                           ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:59
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                           ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:62
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                              ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:62
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                              ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:67
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:67
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:67
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:69
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:69
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:69
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:70
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:70
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:72
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:72
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:75
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:75
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:75
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:76
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:76
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:78
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:78
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:78
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:79
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:79
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:81
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                                 ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:81
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                                 ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:85
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:85
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:85
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:13
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:13
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:13
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:29
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:29
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:29
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:31
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:31
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:34
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:34
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:37
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:37
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:38
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:38
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:39
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:39
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:41
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:41
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:43
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:43
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:44
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:44
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:44
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:45
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:45
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:46
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:46
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:48
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:48
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:48
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:49
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:49
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:50
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:50
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:52
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:52
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:53
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:53
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:55
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:55
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:55
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:56
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:56
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:57
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:57
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:57
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:59
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                           ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:59
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                           ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:62
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                              ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:62
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                              ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:67
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:67
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:67
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:69
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:69
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:69
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:70
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:70
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:72
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:72
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:75
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:75
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:75
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:76
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:76
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:78
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:78
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:78
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:79
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:79
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:81
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                                 ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:81
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                                 ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:85
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:85
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:85
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:13
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:13
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:13
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:29
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:29
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:29
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:31
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:31
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:34
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:34
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:37
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:37
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:38
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:38
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:39
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:39
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:41
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                         ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:41
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                         ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:44
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:44
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:45
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:45
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:45
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:46
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:46
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:47
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:47
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:49
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:49
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:49
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:50
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:50
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:51
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:51
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:53
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:53
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:54
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:54
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:56
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:56
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:56
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:57
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:57
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:58
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:58
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:58
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:60
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                            ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:60
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                            ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:63
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:63
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:68
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:68
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:68
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:70
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:70
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:70
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:71
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:71
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:73
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:73
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:76
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:76
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:76
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:77
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:77
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:79
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:79
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:79
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:80
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:80
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:82
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:82
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:86
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:86
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:86
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:13
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:13
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:13
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:29
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:29
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:29
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:31
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:31
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:34
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:34
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:37
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:37
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:38
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:38
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:39
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:39
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:41
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                         ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:41
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                         ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:44
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:44
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:45
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:45
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:45
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:46
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:46
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:47
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:47
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:49
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:49
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:49
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:50
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:50
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:51
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:51
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:53
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:53
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:54
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:54
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:56
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:56
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:56
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:57
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:57
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:58
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:58
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:58
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:60
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                            ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:60
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                            ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:63
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:63
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:68
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:68
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:68
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:70
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:70
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:70
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:71
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:71
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:73
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:73
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:76
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:76
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:76
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:77
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:77
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:79
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:79
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:79
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:80
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:80
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:82
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:82
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:86
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:86
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:86
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:13
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:13
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:13
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:29
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:29
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:29
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:31
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:31
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:34
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:34
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:37
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:37
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:38
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:38
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:39
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:39
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:41
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                         ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:41
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                         ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:44
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:44
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:45
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:45
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:45
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:46
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:46
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:47
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:47
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:49
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:49
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:49
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:50
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:50
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:51
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:51
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:53
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:53
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:54
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:54
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:56
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:56
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:56
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:57
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:57
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:58
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:58
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:58
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:60
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                            ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:60
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                            ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:63
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:63
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:68
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:68
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:68
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:70
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:70
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:70
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:71
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:71
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:73
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:73
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:76
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:76
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:76
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:77
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:77
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:79
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:79
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:79
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:80
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:80
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:82
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:82
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:86
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:86
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:86
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:13
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:13
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:13
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:29
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:29
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:29
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:31
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:31
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:34
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:34
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:37
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:37
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:38
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:38
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:39
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:39
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:41
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                         ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:41
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                         ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:44
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:44
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:45
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:45
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:45
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:46
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:46
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:47
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:47
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:49
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:49
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:49
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:50
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:50
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:51
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:51
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:53
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:53
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:54
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:54
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:56
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:56
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:56
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:57
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:57
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:58
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:58
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:58
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:60
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                            ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:60
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                            ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:63
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:63
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:68
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:68
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:68
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:70
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:70
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:70
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:71
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:71
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:73
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:73
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:76
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:76
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:76
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:77
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:77
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:79
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:79
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:79
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:80
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:80
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:82
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:82
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:86
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:86
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:86
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:13
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:13
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:13
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:29
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:29
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:29
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:31
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:31
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:34
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:34
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:37
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:37
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:37
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:38
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:38
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:39
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:39
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:41
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:41
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:41
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:42
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                          ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:42
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                          ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:46
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:46
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:48
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:48
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:49
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:49
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:51
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:51
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:51
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:52
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                    ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:52
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                    ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:56
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:56
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:56
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:60
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                            ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:60
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                            ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:63
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:63
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:68
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:68
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:68
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:70
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:70
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:70
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:71
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:71
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:73
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:73
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:76
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:76
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:76
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:77
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:77
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:79
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:79
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:79
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:80
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:80
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:82
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:82
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:86
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:86
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:86
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:13
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:13
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:13
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:29
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:29
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:29
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:31
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:31
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:34
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:34
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:37
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:37
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:37
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:38
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:38
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:39
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:39
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:41
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:41
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:41
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:42
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                          ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:42
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                          ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:46
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:46
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:48
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:48
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:49
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:49
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:51
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:51
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:51
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:52
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                    ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:52
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                    ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:56
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:56
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:56
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:60
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                            ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:60
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                            ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:63
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:63
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:68
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:68
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:68
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:70
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:70
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:70
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:71
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:71
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:73
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:73
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:76
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:76
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:76
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:77
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:77
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:79
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:79
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:79
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:80
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:80
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:82
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:82
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:86
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:86
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:86
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:13
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:13
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:13
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:29
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:29
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:29
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:31
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:31
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:34
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:34
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:37
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:37
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:38
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:38
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:39
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:39
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:41
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:41
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:42
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:42
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:44
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:44
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:47
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:47
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:48
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:48
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:49
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:49
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:51
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:51
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:55
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:55
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:55
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:57
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:57
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:57
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:58
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:58
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:59
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:59
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:61
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:61
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:61
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:62
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:62
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:63
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:63
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:65
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:65
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:66
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:66
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:68
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:68
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:68
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:69
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:69
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:70
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:70
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:70
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:72
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:72
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:75
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:75
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:80
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:80
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:80
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:82
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:82
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:82
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:83
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:83
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:85
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:85
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:85
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:87
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:87
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:87
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:88
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:88
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:90
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:90
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:90
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:91
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:91
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:93
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:93
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:97
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:97
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:97
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:13
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:13
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:13
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:29
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:29
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:29
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:31
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:31
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:34
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:34
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:37
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:37
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:38
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:38
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:39
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:39
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:41
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:41
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:42
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:42
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:44
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:44
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:47
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:47
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:48
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:48
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:49
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:49
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:51
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:51
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:55
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:55
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:55
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:57
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:57
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:57
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:58
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:58
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:59
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:59
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:61
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:61
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:61
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:62
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:62
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:63
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:63
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:65
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:65
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:66
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:66
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:68
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:68
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:68
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:69
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:69
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:70
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:70
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:70
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:72
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:72
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:75
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:75
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:80
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:80
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:80
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:82
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:82
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:82
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:83
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:83
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:85
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:85
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:85
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:87
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:87
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:87
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:88
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:88
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:90
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:90
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:90
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:91
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:91
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:93
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:93
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:97
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:97
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:97
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:13
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:13
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:13
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:29
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:29
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:29
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:31
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:31
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:34
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:34
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:37
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:37
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:38
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:38
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:39
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:39
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:41
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:41
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:42
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:42
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:44
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:44
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:47
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:47
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:48
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:48
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:49
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:49
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:51
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:51
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:55
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:55
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:55
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:57
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:57
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:57
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:58
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:58
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:59
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:59
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:61
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:61
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:61
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:62
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:62
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:63
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:63
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:65
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:65
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:66
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:66
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:68
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:68
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:68
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:69
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:69
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:70
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:70
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:70
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:72
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:72
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:75
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:75
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:80
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:80
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:80
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:82
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:82
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:82
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:83
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:83
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:85
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:85
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:85
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:87
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:87
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:87
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:88
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:88
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:90
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:90
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:90
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:91
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:91
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:93
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:93
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:97
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:97
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:97
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:13
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:13
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:13
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:29
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:29
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:29
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:31
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:31
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:34
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:34
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:37
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:37
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:38
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:38
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:39
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:39
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:41
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:41
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:42
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:42
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:44
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:44
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:47
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:47
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:48
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:48
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:49
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:49
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:51
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:51
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:55
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:55
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:55
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:57
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:57
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:57
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:58
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:58
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:59
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:59
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:61
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:61
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:61
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:62
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:62
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:63
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:63
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:65
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:65
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:66
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:66
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:68
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:68
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:68
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:69
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:69
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:70
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:70
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:70
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:72
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:72
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:75
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:75
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:80
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:80
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:80
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:82
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:82
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:82
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:83
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:83
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:85
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:85
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:85
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:87
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:87
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:87
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:88
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:88
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:90
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:90
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:90
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:91
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:91
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:93
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:93
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:97
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:97
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:97
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:13
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:13
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:13
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:29
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:29
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:29
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:31
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:31
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:34
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:34
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:37
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:37
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:38
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:38
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:39
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:39
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:41
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:41
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:42
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:42
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:44
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:44
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:47
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:47
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:48
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:48
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:49
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:49
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:51
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:51
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:55
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:55
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:55
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:57
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:57
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:57
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:58
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:58
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:59
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:59
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:61
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:61
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:61
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:62
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:62
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:63
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:63
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:65
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:65
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:66
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:66
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:68
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:68
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:68
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:69
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:69
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:70
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:70
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:70
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:72
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:72
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:75
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:75
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:80
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:80
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:80
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:82
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:82
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:82
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:83
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:83
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:85
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:85
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:85
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:87
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:87
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:87
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:88
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:88
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:90
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:90
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:90
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:91
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:91
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:93
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:93
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:97
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:97
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:97
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:13
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:13
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:13
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:29
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:29
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:29
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:31
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:31
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:34
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:34
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:37
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:37
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:38
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:38
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:39
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:39
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:41
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:41
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:42
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:42
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:44
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:44
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:47
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:47
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:48
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:48
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:49
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:49
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:51
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:51
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:55
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:55
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:55
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:57
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:57
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:57
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:58
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:58
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:59
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:59
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:61
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:61
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:61
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:62
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:62
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:63
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:63
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:65
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:65
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:66
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:66
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:68
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:68
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:68
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:69
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:69
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:70
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:70
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:70
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:72
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:72
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:75
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:75
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:80
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:80
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:80
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:82
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:82
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:82
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:83
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:83
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:85
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                     ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:85
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                     ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:85
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                     ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:88
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:88
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:88
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:89
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:89
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:91
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:91
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:91
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:92
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:92
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:94
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                              ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:94
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                              ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:98
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:98
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:98
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:13
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:13
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:13
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:29
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:29
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:29
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:31
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:31
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:34
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:34
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:37
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:37
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:38
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:38
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:39
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:39
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:41
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:41
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:42
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:42
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:44
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:44
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:47
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:47
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:48
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:48
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:49
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:49
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:51
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:51
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:55
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:55
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:55
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                       ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:57
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:57
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:57
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:58
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:58
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:59
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:59
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:61
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:61
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:61
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:62
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:62
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:63
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:63
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:65
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:65
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:66
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:66
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:68
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:68
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:68
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:69
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:69
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:70
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:70
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:70
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:72
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:72
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                        ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:75
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:75
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:80
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:80
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:80
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:82
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:82
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:82
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:83
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:83
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:85
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                     ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:85
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                     ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:85
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                     ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:88
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:88
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:88
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:89
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:89
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:91
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:91
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:91
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:92
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:92
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:94
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                              ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:94
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                              ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:98
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:98
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:98
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:13
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:13
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:13
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:29
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:29
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:29
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:31
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:31
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:34
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:34
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:37
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:37
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:38
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:38
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:39
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:39
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:41
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:41
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:42
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:42
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:44
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                            ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:44
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                            ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:49
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:49
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:50
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:50
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:51
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:51
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:53
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                     ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:53
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                     ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:57
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:57
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:57
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:59
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:59
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:59
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                           ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:60
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:60
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:61
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:61
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:63
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:63
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:63
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                               ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:64
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:64
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:65
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:65
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:67
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:67
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:68
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:68
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:70
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:70
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:70
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:71
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:71
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:72
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:72
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:72
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:74
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                          ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:74
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                          ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:77
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                             ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:77
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                             ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:82
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:82
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:82
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:84
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:84
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:84
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:85
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:85
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:87
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:87
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:87
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:89
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:89
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:89
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:90
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:90
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:92
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:92
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:92
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:93
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:93
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:95
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                               ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:95
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                               ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:99
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:99
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:99
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:13
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:13
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:13
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:29
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:29
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:29
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:31
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:31
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:34
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:34
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:37
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:37
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:38
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:38
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:39
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:39
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:41
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:41
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:42
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:42
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:44
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                            ^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:44
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                            ^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:50
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:50
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:51
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:51
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:52
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:52
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:54
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                      ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:54
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                      ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:58
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                          ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:58
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                          ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:58
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                          ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:60
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:60
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:60
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:61
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:61
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:62
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:62
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:64
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:64
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:64
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:65
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:65
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:66
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:66
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:68
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:68
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:69
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:69
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:71
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:71
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:71
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:72
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:72
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:73
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:73
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:73
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:74
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                          ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:74
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                          ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:77
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                             ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:77
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                             ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:82
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:82
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:82
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:84
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:84
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:84
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:85
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:85
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:87
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:87
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:87
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:89
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:89
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:89
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:90
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:90
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:92
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:92
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:92
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:93
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:93
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:95
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                               ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:95
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                               ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:99
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:99
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:99
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:13
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:13
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:13
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:29
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:29
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:29
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:31
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:31
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:34
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:34
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:37
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:37
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:38
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:38
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:39
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:39
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:41
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:41
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:42
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:42
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:44
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                            ^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:44
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                            ^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:50
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:50
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:51
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:51
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:52
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:52
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:54
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                      ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:54
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                      ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:58
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                          ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:58
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                          ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:58
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                          ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:60
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:60
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:60
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:61
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:61
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:62
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:62
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:64
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:64
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:64
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:65
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:65
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:66
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:66
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:68
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:68
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:69
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:69
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:71
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:71
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:71
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:72
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:72
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:73
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:73
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:73
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:74
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                          ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:74
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                          ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:77
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                             ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:77
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                             ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:82
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:82
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:82
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:84
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:84
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:84
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:85
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:85
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:87
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:87
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:87
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:89
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:89
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:89
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:90
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:90
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:92
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:92
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:92
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:93
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:93
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:95
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                               ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:95
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                               ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:99
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:99
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:99
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:13
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:13
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:13
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:68:13
|
68 | /             quote_expr!(cx,
69 | |                 match (&($given), &($expected)) {
70 | |                     (given_val, expected_val) => {
71 | |                         let chk = $chk_fun;
...  |
80 | |                 }
81 | |             )
| |_____________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:89:21
|
89 | /                     quote_expr!(cx,
90 | |                         match (&($a),) {
91 | |                             (a,) => {
92 | |                                 if !($fun(*a)) {
...  |
98 | |                         };
99 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:103:21
|
103 | /                     quote_expr!(cx,
104 | |                         match (&($a), &($b)) {
105 | |                             (a, b) => {
106 | |                                 if !($fun(*a, *b)) {
...   |
114 | |                         };
115 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:119:21
|
119 | /                     quote_expr!(cx,
120 | |                         match (&($a), &($b), &($c)) {
121 | |                             (a, b, c) => {
122 | |                                 if !($fun(*a, *b, *c)) {
...   |
131 | |                         };
132 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:136:21
|
136 | /                     quote_expr!(cx,
137 | |                         match (&($a), &($b), &($c), &($d)) {
138 | |                             (a, b, c, d) => {
139 | |                                 if !($fun(*a, *b, *c, *d)) {
...   |
149 | |                         };
150 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:154:21
|
154 | /                     quote_expr!(cx,
155 | |                         match (&($a), &($b), &($c), &($d), &($e)) {
156 | |                             (a, b, c, d, e) => {
157 | |                                 if !($fun(*a, *b, *c, *d, *e)) {
...   |
169 | |                         };
170 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:174:21
|
174 | /                     quote_expr!(cx,
175 | |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
176 | |                             (a, b, c, d, e, f) => {
177 | |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
...   |
191 | |                         };
192 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:198:13
|
198 | /             quote_expr!(cx,
199 | |                 if !($expr) {
200 | |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
201 | |                 }
202 | |             )
| |_____________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:5
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:13
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:13
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:13
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:13
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:13
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:13
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:13
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:13
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:13
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:13
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:13
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:13
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:13
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:13
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:13
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:13
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:13
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:13
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:48:25
|
48 |     let mut parser = cx.new_parser_from_tts(args);
|                         ^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:51:37
|
51 |     let expr: P<ast::Expr> = parser.parse_expr();
|                                     ^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error[E0308]: mismatched types
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:51:30
|
51 |     let expr: P<ast::Expr> = parser.parse_expr();
|                              ^^^^^^^^^^^^^^^^^^^ expected struct `syntax::ptr::P`, found enum `std::result::Result`
|
= note: expected type `syntax::ptr::P<_>`
found type `std::result::Result<syntax::ptr::P<_>, syntax::<unnamed>::DiagnosticBuilder<'_>>`
= help: here are some functions which might fulfill your needs:
- .unwrap()
- .unwrap_err()

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:53:8
|
53 |     if parser.token != token::Eof {
|        ^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:54:12
|
54 |         cx.span_err(sp, "Non terminated internal bassert macro!");
|            ^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:55:16
|
55 |         return DummyResult::any(sp);
|                ^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:65:29
|
65 |     let inner_check = match expr.node {
|                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:68:13
|
68 | /             quote_expr!(cx,
69 | |                 match (&($given), &($expected)) {
70 | |                     (given_val, expected_val) => {
71 | |                         let chk = $chk_fun;
...  |
80 | |                 }
81 | |             )
| |_____________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:68:13
|
68 | /             quote_expr!(cx,
69 | |                 match (&($given), &($expected)) {
70 | |                     (given_val, expected_val) => {
71 | |                         let chk = $chk_fun;
...  |
80 | |                 }
81 | |             )
| |_____________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:69:17
|
69 |                 match (&($given), &($expected)) {
|                 ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:22
|
70 |                     (given_val, expected_val) => {
|                      ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:70:33
|
70 |                     (given_val, expected_val) => {
|                                 ^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:71:25
|
71 |                         let chk = $chk_fun;
|                         ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:71:29
|
71 |                         let chk = $chk_fun;
|                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:71:36
|
71 |                         let chk = $chk_fun;
|                                    ^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:25
|
72 |                         if !chk(given_val, expected_val) {
|                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:29
|
72 |                         if !chk(given_val, expected_val) {
|                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:33
|
72 |                         if !chk(given_val, expected_val) {
|                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:72:44
|
72 |                         if !chk(given_val, expected_val) {
|                                            ^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:73:29
|
73 |                             panic!("assertion failed: {}:\n\
|                             ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:73:36
|
73 |                               panic!("assertion failed: {}:\n\
|  ____________________________________^
74 | |                                     left:  `{}` = `{:?}`\n\
75 | |                                     right: `{}` = `{:?}`{}",
| |___________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:33
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:45
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                             ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:52
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                    ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:76:73
|
76 |                                 stringify!($expr), stringify!($given), *given_val,
|                                                                         ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:33
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:57
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                         ^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:77:71
|
77 |                                 stringify!($expected), *expected_val, rest);
|                                                                       ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:89:21
|
89 | /                     quote_expr!(cx,
90 | |                         match (&($a),) {
91 | |                             (a,) => {
92 | |                                 if !($fun(*a)) {
...  |
98 | |                         };
99 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:89:21
|
89 | /                     quote_expr!(cx,
90 | |                         match (&($a),) {
91 | |                             (a,) => {
92 | |                                 if !($fun(*a)) {
...  |
98 | |                         };
99 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:90:25
|
90 |                         match (&($a),) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:91:30
|
91 |                             (a,) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:33
|
92 |                                 if !($fun(*a)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:92:44
|
92 |                                 if !($fun(*a)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:93:37
|
93 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:93:44
|
93 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
94 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:45
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:57
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                         ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:64
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:81
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:95:84
|
95 |                                             stringify!($expr), stringify!($a), *a, rest);
|                                                                                    ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:103:21
|
103 | /                     quote_expr!(cx,
104 | |                         match (&($a), &($b)) {
105 | |                             (a, b) => {
106 | |                                 if !($fun(*a, *b)) {
...   |
114 | |                         };
115 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:103:21
|
103 | /                     quote_expr!(cx,
104 | |                         match (&($a), &($b)) {
105 | |                             (a, b) => {
106 | |                                 if !($fun(*a, *b)) {
...   |
114 | |                         };
115 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:104:25
|
104 |                         match (&($a), &($b)) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:30
|
105 |                             (a, b) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:105:33
|
105 |                             (a, b) => {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:33
|
106 |                                 if !($fun(*a, *b)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:44
|
106 |                                 if !($fun(*a, *b)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:106:48
|
106 |                                 if !($fun(*a, *b)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:107:37
|
107 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:107:44
|
107 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
108 | |                                             {} = {:?}\n\
109 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:45
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:57
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                         ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:64
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:81
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:110:84
|
110 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                    ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:111:46
|
111 |                                             *b, rest);
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:111:49
|
111 |                                             *b, rest);
|                                                 ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:119:21
|
119 | /                     quote_expr!(cx,
120 | |                         match (&($a), &($b), &($c)) {
121 | |                             (a, b, c) => {
122 | |                                 if !($fun(*a, *b, *c)) {
...   |
131 | |                         };
132 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:119:21
|
119 | /                     quote_expr!(cx,
120 | |                         match (&($a), &($b), &($c)) {
121 | |                             (a, b, c) => {
122 | |                                 if !($fun(*a, *b, *c)) {
...   |
131 | |                         };
132 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:120:25
|
120 |                         match (&($a), &($b), &($c)) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:30
|
121 |                             (a, b, c) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:33
|
121 |                             (a, b, c) => {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:121:36
|
121 |                             (a, b, c) => {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:33
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:44
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:48
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:122:52
|
122 |                                 if !($fun(*a, *b, *c)) {
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:123:37
|
123 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:123:44
|
123 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
124 | |                                             {} = {:?}\n\
125 | |                                             {} = {:?}\n\
126 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:45
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:57
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                         ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:64
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:81
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:127:84
|
127 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                    ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:46
|
128 |                                             *b, stringify!($c), *c, rest);
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:49
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:66
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:128:69
|
128 |                                             *b, stringify!($c), *c, rest);
|                                                                     ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:136:21
|
136 | /                     quote_expr!(cx,
137 | |                         match (&($a), &($b), &($c), &($d)) {
138 | |                             (a, b, c, d) => {
139 | |                                 if !($fun(*a, *b, *c, *d)) {
...   |
149 | |                         };
150 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:136:21
|
136 | /                     quote_expr!(cx,
137 | |                         match (&($a), &($b), &($c), &($d)) {
138 | |                             (a, b, c, d) => {
139 | |                                 if !($fun(*a, *b, *c, *d)) {
...   |
149 | |                         };
150 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:137:25
|
137 |                         match (&($a), &($b), &($c), &($d)) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:30
|
138 |                             (a, b, c, d) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:33
|
138 |                             (a, b, c, d) => {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:36
|
138 |                             (a, b, c, d) => {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:138:39
|
138 |                             (a, b, c, d) => {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:33
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:44
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:48
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:52
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:139:56
|
139 |                                 if !($fun(*a, *b, *c, *d)) {
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:140:37
|
140 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:140:44
|
140 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
141 | |                                             {} = {:?}\n\
142 | |                                             {} = {:?}\n\
143 | |                                             {} = {:?}\n\
144 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:45
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:57
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                         ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:64
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:81
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:145:84
|
145 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                    ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:46
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:49
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:66
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:69
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                     ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:86
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:146:89
|
146 |                                             *b, stringify!($c), *c, stringify!($d), *d, rest);
|                                                                                         ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:154:21
|
154 | /                     quote_expr!(cx,
155 | |                         match (&($a), &($b), &($c), &($d), &($e)) {
156 | |                             (a, b, c, d, e) => {
157 | |                                 if !($fun(*a, *b, *c, *d, *e)) {
...   |
169 | |                         };
170 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:154:21
|
154 | /                     quote_expr!(cx,
155 | |                         match (&($a), &($b), &($c), &($d), &($e)) {
156 | |                             (a, b, c, d, e) => {
157 | |                                 if !($fun(*a, *b, *c, *d, *e)) {
...   |
169 | |                         };
170 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:155:25
|
155 |                         match (&($a), &($b), &($c), &($d), &($e)) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:30
|
156 |                             (a, b, c, d, e) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:33
|
156 |                             (a, b, c, d, e) => {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:36
|
156 |                             (a, b, c, d, e) => {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:39
|
156 |                             (a, b, c, d, e) => {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:156:42
|
156 |                             (a, b, c, d, e) => {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:33
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:44
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:48
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:52
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:56
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:157:60
|
157 |                                 if !($fun(*a, *b, *c, *d, *e)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:158:37
|
158 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:158:44
|
158 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
159 | |                                             {} = {:?}\n\
160 | |                                             {} = {:?}\n\
161 | |                                             {} = {:?}\n\
162 | |                                             {} = {:?}\n\
163 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:45
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:57
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                         ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:64
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:81
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:164:84
|
164 |                                             stringify!($expr), stringify!($a), *a, stringify!($b),
|                                                                                    ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:46
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:49
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:66
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:69
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                     ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:165:86
|
165 |                                             *b, stringify!($c), *c, stringify!($d), *d,
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:45
|
166 |                                             stringify!($e), *e, rest);
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:62
|
166 |                                             stringify!($e), *e, rest);
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:166:65
|
166 |                                             stringify!($e), *e, rest);
|                                                                 ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:174:21
|
174 | /                     quote_expr!(cx,
175 | |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
176 | |                             (a, b, c, d, e, f) => {
177 | |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
...   |
191 | |                         };
192 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:174:21
|
174 | /                     quote_expr!(cx,
175 | |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
176 | |                             (a, b, c, d, e, f) => {
177 | |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
...   |
191 | |                         };
192 | |                     )
| |_____________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:175:25
|
175 |                         match (&($a), &($b), &($c), &($d), &($e), &($f)) {
|                         ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:30
|
176 |                             (a, b, c, d, e, f) => {
|                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:33
|
176 |                             (a, b, c, d, e, f) => {
|                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:36
|
176 |                             (a, b, c, d, e, f) => {
|                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:39
|
176 |                             (a, b, c, d, e, f) => {
|                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:42
|
176 |                             (a, b, c, d, e, f) => {
|                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:176:45
|
176 |                             (a, b, c, d, e, f) => {
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:33
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:44
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:48
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:52
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:56
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:60
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:177:64
|
177 |                                 if !($fun(*a, *b, *c, *d, *e, *f)) {
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:178:37
|
178 |                                     panic!("assertion failed: {}:\n\
|                                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:178:44
|
178 |                                       panic!("assertion failed: {}:\n\
|  ____________________________________________^
179 | |                                             {} = {:?}\n\
180 | |                                             {} = {:?}\n\
181 | |                                             {} = {:?}\n\
182 | |                                             {} = {:?}\n\
183 | |                                             {} = {:?}\n\
184 | |                                             {} = {:?}{}",
| |________________________________________________________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:185:45
|
185 |                                             stringify!($expr),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:185:57
|
185 |                                             stringify!($expr),
|                                                         ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:45
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:62
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:65
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:82
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:186:85
|
186 |                                             stringify!($a), *a, stringify!($b), *b, stringify!($c),
|                                                                                     ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:46
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:49
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                 ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:66
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:69
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                     ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:187:86
|
187 |                                             *c, stringify!($d), *d, stringify!($e), *e,
|                                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:45
|
188 |                                             stringify!($f), *f, rest);
|                                             ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:62
|
188 |                                             stringify!($f), *f, rest);
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:188:65
|
188 |                                             stringify!($f), *f, rest);
|                                                                 ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:198:13
|
198 | /             quote_expr!(cx,
199 | |                 if !($expr) {
200 | |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
201 | |                 }
202 | |             )
| |_____________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:198:13
|
198 | /             quote_expr!(cx,
199 | |                 if !($expr) {
200 | |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
201 | |                 }
202 | |             )
| |_____________^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:199:17
|
199 |                 if !($expr) {
|                 ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:199:23
|
199 |                 if !($expr) {
|                       ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:21
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                     ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:28
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                            ^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:36
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                    ^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:58
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                          ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:70
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                      ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:77
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                             ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:200:84
|
200 |                     panic!(concat!("assertion failed: ", stringify!($expr), "{}"), rest);
|                                                                                    ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:5
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:5
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:24
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                        ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:33
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                 ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:38
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                      ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:207:43
|
207 |     quote_expr!(cx, |: rest: &::std::fmt::Arguments| { $inner_check } )
|                                           ^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:13
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:13
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:31
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:34
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:38
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:41
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:45
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:49
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:52
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:56
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:62
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                              ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:70
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:76
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:214:81
|
214 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x == *y }; chk })
|                                                                                 ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:13
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:13
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:31
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:34
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:38
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:41
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                         ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:45
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:49
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:52
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:56
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:62
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                              ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:70
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:76
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:217:81
|
217 |             quote_expr!(cx, { fn chk<T: Eq>(x: &T, y: &T) -> bool { *x != *y }; chk })
|                                                                                 ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:13
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:13
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:31
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:34
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:38
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:41
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                         ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:46
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:50
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:53
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:57
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:63
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:71
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:77
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:220:82
|
220 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <= *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:13
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:13
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:31
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:34
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:38
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:41
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                         ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:46
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:50
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:53
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:57
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:63
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:71
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:77
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:223:82
|
223 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >= *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:13
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:13
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:31
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:34
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:38
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:41
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                         ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:46
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:50
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:53
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:57
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:63
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:71
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:77
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:226:82
|
226 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x <  *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:13
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:13
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:31
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:34
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:38
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:41
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                         ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:46
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:50
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:53
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:57
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:63
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:71
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:77
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:229:82
|
229 |             quote_expr!(cx, { fn chk<T: Ord>(x: &T, y: &T) -> bool { *x >  *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:13
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:13
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:31
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:34
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:38
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:42
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                          ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:48
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:52
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                    ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:63
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:71
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:77
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:232:82
|
232 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x || *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:13
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:13
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:31
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:34
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:38
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:42
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                          ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:48
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:52
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                    ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:63
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                               ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:71
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:77
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:235:82
|
235 |             quote_expr!(cx, { fn chk(x: &bool, y: &bool)   -> bool { *x && *y }; chk })
|                                                                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:13
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:13
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:31
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:34
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:38
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:41
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:44
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:48
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:51
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:58
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:62
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:65
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:69
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:75
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:83
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:88
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:238:93
|
238 |             quote_expr!(cx, { fn chk<R, L: Add<R, bool>>(x: &L, y: &R) -> bool { *x + *y }; chk })
|                                                                                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:13
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:13
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:31
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:34
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:38
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:41
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:44
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:48
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:51
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:58
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:62
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:65
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:69
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:75
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:83
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:88
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:241:93
|
241 |             quote_expr!(cx, { fn chk<R, L: Sub<R, bool>>(x: &L, y: &R) -> bool { *x - *y }; chk })
|                                                                                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:13
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:13
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:31
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:34
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:38
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:41
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:44
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:48
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:51
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:58
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:62
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:65
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:69
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:75
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:83
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:88
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:244:93
|
244 |             quote_expr!(cx, { fn chk<R, L: Mul<R, bool>>(x: &L, y: &R) -> bool { *x * *y }; chk })
|                                                                                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:13
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:13
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:31
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:34
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:38
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:41
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:44
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:48
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:51
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:58
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:62
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:65
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:69
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:75
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:83
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:88
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:247:93
|
247 |             quote_expr!(cx, { fn chk<R, L: Div<R, bool>>(x: &L, y: &R) -> bool { *x / *y }; chk })
|                                                                                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:13
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:13
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:31
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:34
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:38
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:41
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:44
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:48
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:51
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:58
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:62
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:65
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:69
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:75
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:83
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:88
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:250:93
|
250 |             quote_expr!(cx, { fn chk<R, L: Rem<R, bool>>(x: &L, y: &R) -> bool { *x % *y }; chk })
|                                                                                             ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:13
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:13
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:31
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:34
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:38
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:41
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:44
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:48
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:51
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:58
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:62
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:65
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:69
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:75
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:83
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:89
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:253:94
|
253 |             quote_expr!(cx, { fn chk<R, L: Shr<R, bool>>(x: &L, y: &R) -> bool { *x >> *y }; chk })
|                                                                                              ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:13
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:13
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:31
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:34
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:38
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:41
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:44
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                            ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:48
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:51
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                   ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:58
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:62
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                              ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:65
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:69
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:75
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                           ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:83
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:89
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:256:94
|
256 |             quote_expr!(cx, { fn chk<R, L: Shl<R, bool>>(x: &L, y: &R) -> bool { *x << *y }; chk })
|                                                                                              ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:13
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:13
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:31
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:34
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:38
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:41
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:44
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                            ^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:50
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                  ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:53
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                     ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:60
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                            ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:64
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:67
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:71
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                       ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:77
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                             ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:85
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:90
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:259:95
|
259 |             quote_expr!(cx, { fn chk<R, L: BitOr<R, bool>>(x: &L, y: &R) -> bool { *x | *y }; chk })
|                                                                                               ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:13
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:13
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:31
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:34
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:38
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:41
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:44
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                            ^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:51
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:54
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                      ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:61
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:65
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:68
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:72
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:77
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                             ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:85
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:90
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:262:95
|
262 |             quote_expr!(cx, { fn chk<R, L: BitAnd<R, bool>>(x: &L, y: &R)-> bool { *x & *y }; chk })
|                                                                                               ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:13
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:13
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:31
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                               ^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:34
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                  ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:38
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                      ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:41
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                         ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:44
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                            ^^^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:51
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                   ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:54
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                      ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:61
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                             ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:65
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                 ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:68
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                    ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:72
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                        ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:77
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                             ^^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:85
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                     ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:90
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                          ^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, and unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? (see issue #27812)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs:265:95
|
265 |             quote_expr!(cx, { fn chk<R, L: BitXor<R, bool>>(x: &L, y: &R)-> bool { *x ^ *y }; chk })
|                                                                                               ^^^
|
= help: add #![feature(rustc_private)] to the crate attributes to enable

error: Compilation failed, aborting rustdoc

thread 'main' panicked at 'ChainedError {
error: Could not document `bassert`.,
cause: process didn't exit successfully: `rustdoc --crate-name bassert .cargo/registry/src/github.com-1ecc6299db9ec823/bassert-0.0.4/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -L dependency=/home/cratesfyi/cratesfyi/debug/deps` (exit code: 101)
}', src/bin/cratesfyi.rs:136
note: Run with `RUST_BACKTRACE=1` for a backtrace.