diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2024-07-19 18:32:33 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2024-07-19 21:31:30 +0200 |
| commit | eec3c3db88dff8ed429ca2f584138f252c60d4fe (patch) | |
| tree | 8f3926c00a8cf74a68783decbd7324b3ebe44737 /tests/rustdoc-gui/src/test_docs/lib.rs | |
| parent | 590c01a5c544d92c78734a431d2838b88f2934e3 (diff) | |
| download | rust-eec3c3db88dff8ed429ca2f584138f252c60d4fe.tar.gz rust-eec3c3db88dff8ed429ca2f584138f252c60d4fe.zip | |
Add GUI test for trait bounds display
Diffstat (limited to 'tests/rustdoc-gui/src/test_docs/lib.rs')
| -rw-r--r-- | tests/rustdoc-gui/src/test_docs/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/rustdoc-gui/src/test_docs/lib.rs b/tests/rustdoc-gui/src/test_docs/lib.rs index 7e34178e56f..6c638dc3b9d 100644 --- a/tests/rustdoc-gui/src/test_docs/lib.rs +++ b/tests/rustdoc-gui/src/test_docs/lib.rs @@ -614,3 +614,9 @@ pub mod private { B, } } + +pub mod trait_bounds { + pub trait OneBound: Sized {} + pub trait TwoBounds: Sized + Copy {} + pub trait ThreeBounds: Sized + Copy + Eq {} +} |
