@@ -382,7 +382,7 @@ error[E0435]: attempt to use a non-constant value in a constant
382382 --> $DIR/parse-error.rs:39:37
383383 |
384384LL | 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...
387387LL | 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 |
393393LL | 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...
396396LL | 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 |
402402LL | 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...
405405LL | 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 |
411411LL | 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...
414414LL | 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 |
420420LL | 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...
423423LL | 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 |
429429LL | 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...
432432LL | 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 |
438438LL | 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...
441441LL | asm!("{1}", in("x0") foo, const bar);
442442 | ^^^ non-constant value
0 commit comments