Skip to content

Commit 71ff16b

Browse files
committed
Update test output for ui/asm/aarch64/parse-error.rs
1 parent 69803f7 commit 71ff16b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/test/ui/asm/aarch64/parse-error.stderr

+7-7
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ error[E0435]: attempt to use a non-constant value in a constant
382382
--> $DIR/parse-error.rs:39:37
383383
|
384384
LL | let mut foo = 0;
385-
| ---------- help: consider using `const` instead of `let`: `const foo`
385+
| ----------- help: consider using `const` instead of `let`: `const foo`
386386
...
387387
LL | asm!("{}", options(), const foo);
388388
| ^^^ non-constant value
@@ -391,7 +391,7 @@ error[E0435]: attempt to use a non-constant value in a constant
391391
--> $DIR/parse-error.rs:48:44
392392
|
393393
LL | let mut foo = 0;
394-
| ---------- help: consider using `const` instead of `let`: `const foo`
394+
| ----------- help: consider using `const` instead of `let`: `const foo`
395395
...
396396
LL | asm!("{}", clobber_abi("C"), const foo);
397397
| ^^^ non-constant value
@@ -400,7 +400,7 @@ error[E0435]: attempt to use a non-constant value in a constant
400400
--> $DIR/parse-error.rs:55:31
401401
|
402402
LL | let mut foo = 0;
403-
| ---------- help: consider using `const` instead of `let`: `const foo`
403+
| ----------- help: consider using `const` instead of `let`: `const foo`
404404
...
405405
LL | asm!("{a}", a = const foo, a = const bar);
406406
| ^^^ non-constant value
@@ -409,7 +409,7 @@ error[E0435]: attempt to use a non-constant value in a constant
409409
--> $DIR/parse-error.rs:55:46
410410
|
411411
LL | let mut bar = 0;
412-
| ---------- help: consider using `const` instead of `let`: `const bar`
412+
| ----------- help: consider using `const` instead of `let`: `const bar`
413413
...
414414
LL | asm!("{a}", a = const foo, a = const bar);
415415
| ^^^ non-constant value
@@ -418,7 +418,7 @@ error[E0435]: attempt to use a non-constant value in a constant
418418
--> $DIR/parse-error.rs:62:45
419419
|
420420
LL | let mut bar = 0;
421-
| ---------- help: consider using `const` instead of `let`: `const bar`
421+
| ----------- help: consider using `const` instead of `let`: `const bar`
422422
...
423423
LL | asm!("{a}", in("x0") foo, a = const bar);
424424
| ^^^ non-constant value
@@ -427,7 +427,7 @@ error[E0435]: attempt to use a non-constant value in a constant
427427
--> $DIR/parse-error.rs:65:45
428428
|
429429
LL | let mut bar = 0;
430-
| ---------- help: consider using `const` instead of `let`: `const bar`
430+
| ----------- help: consider using `const` instead of `let`: `const bar`
431431
...
432432
LL | asm!("{a}", in("x0") foo, a = const bar);
433433
| ^^^ non-constant value
@@ -436,7 +436,7 @@ error[E0435]: attempt to use a non-constant value in a constant
436436
--> $DIR/parse-error.rs:68:41
437437
|
438438
LL | let mut bar = 0;
439-
| ---------- help: consider using `const` instead of `let`: `const bar`
439+
| ----------- help: consider using `const` instead of `let`: `const bar`
440440
...
441441
LL | asm!("{1}", in("x0") foo, const bar);
442442
| ^^^ non-constant value

0 commit comments

Comments
 (0)