-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test that both size_of_val and align_of_val panic
- Loading branch information
Showing
5 changed files
with
16 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
thread 'main' panicked at library/core/src/panicking.rs: | ||
thread 'main' panicked at library/core/src/panicking.rs:$LINE:$COL: | ||
attempted to compute the size or alignment of extern type `Opaque` | ||
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace | ||
thread caused non-unwinding panic. aborting. |
2 changes: 1 addition & 1 deletion
2
...xtern/extern-types-size_of_val.run.stderr → ...extern-types-size_of_val.align.run.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
thread 'main' panicked at library/core/src/panicking.rs: | ||
thread 'main' panicked at library/core/src/panicking.rs:$LINE:$COL: | ||
attempted to compute the size or alignment of extern type `A` | ||
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace | ||
thread caused non-unwinding panic. aborting. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
thread 'main' panicked at library/core/src/panicking.rs:$LINE:$COL: | ||
attempted to compute the size or alignment of extern type `A` | ||
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace | ||
thread caused non-unwinding panic. aborting. |