Files
rust/tests/ui/parser/triple-colon.stderr
T
Christian Poveda b2ab7cf980 Gate 2015 UI tests
2025-11-27 11:19:00 -05:00

147 lines
3.5 KiB
Plaintext

error: path separator must be a double colon
--> $DIR/triple-colon.rs:6:7
|
LL | use :::std::{cell as _};
| ^
|
help: use a double colon instead
|
LL - use :::std::{cell as _};
LL + use ::std::{cell as _};
|
error: path separator must be a double colon
--> $DIR/triple-colon.rs:7:16
|
LL | use std::cell:::*;
| ^
|
help: use a double colon instead
|
LL - use std::cell:::*;
LL + use std::cell::*;
|
error: path separator must be a double colon
--> $DIR/triple-colon.rs:8:16
|
LL | use std::cell:::Cell;
| ^
|
help: use a double colon instead
|
LL - use std::cell:::Cell;
LL + use std::cell::Cell;
|
error: path separator must be a double colon
--> $DIR/triple-colon.rs:9:10
|
LL | use std:::{cell as _};
| ^
|
help: use a double colon instead
|
LL - use std:::{cell as _};
LL + use std::{cell as _};
|
error: path separator must be a double colon
--> $DIR/triple-colon.rs:12:11
|
LL | use :::{};
| ^
|
help: use a double colon instead
|
LL - use :::{};
LL + use ::{};
|
error: path separator must be a double colon
--> $DIR/triple-colon.rs:13:11
|
LL | use :::*;
| ^
|
help: use a double colon instead
|
LL - use :::*;
LL + use ::*;
|
error: path separator must be a double colon
--> $DIR/triple-colon.rs:17:14
|
LL | let c: :::std:::cell:::Cell:::<u8> = Cell:::<u8>:::new(0);
| ^
|
help: use a double colon instead
|
LL - let c: :::std:::cell:::Cell:::<u8> = Cell:::<u8>:::new(0);
LL + let c: ::std:::cell:::Cell:::<u8> = Cell:::<u8>:::new(0);
|
error: path separator must be a double colon
--> $DIR/triple-colon.rs:17:20
|
LL | let c: :::std:::cell:::Cell:::<u8> = Cell:::<u8>:::new(0);
| ^
|
help: use a double colon instead
|
LL - let c: :::std:::cell:::Cell:::<u8> = Cell:::<u8>:::new(0);
LL + let c: :::std::cell:::Cell:::<u8> = Cell:::<u8>:::new(0);
|
error: path separator must be a double colon
--> $DIR/triple-colon.rs:17:27
|
LL | let c: :::std:::cell:::Cell:::<u8> = Cell:::<u8>:::new(0);
| ^
|
help: use a double colon instead
|
LL - let c: :::std:::cell:::Cell:::<u8> = Cell:::<u8>:::new(0);
LL + let c: :::std:::cell::Cell:::<u8> = Cell:::<u8>:::new(0);
|
error: path separator must be a double colon
--> $DIR/triple-colon.rs:17:34
|
LL | let c: :::std:::cell:::Cell:::<u8> = Cell:::<u8>:::new(0);
| ^
|
help: use a double colon instead
|
LL - let c: :::std:::cell:::Cell:::<u8> = Cell:::<u8>:::new(0);
LL + let c: :::std:::cell:::Cell::<u8> = Cell:::<u8>:::new(0);
|
error: path separator must be a double colon
--> $DIR/triple-colon.rs:17:48
|
LL | let c: :::std:::cell:::Cell:::<u8> = Cell:::<u8>:::new(0);
| ^
|
help: use a double colon instead
|
LL - let c: :::std:::cell:::Cell:::<u8> = Cell:::<u8>:::new(0);
LL + let c: :::std:::cell:::Cell:::<u8> = Cell::<u8>:::new(0);
|
error: path separator must be a double colon
--> $DIR/triple-colon.rs:17:55
|
LL | let c: :::std:::cell:::Cell:::<u8> = Cell:::<u8>:::new(0);
| ^
|
help: use a double colon instead
|
LL - let c: :::std:::cell:::Cell:::<u8> = Cell:::<u8>:::new(0);
LL + let c: :::std:::cell:::Cell:::<u8> = Cell:::<u8>::new(0);
|
error: aborting due to 12 previous errors