File: doc-notable_trait-mut_t_is_not_an_iterator.rs

package info (click to toggle)
rustc-web 1.78.0%2Bdfsg1-2~deb12u3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,245,420 kB
  • sloc: xml: 147,985; javascript: 18,022; sh: 11,083; python: 10,265; ansic: 6,172; cpp: 5,023; asm: 4,390; makefile: 4,269
file content (23 lines) | stat: -rw-r--r-- 697 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! Test case for [#80737].
//!
//! A SomeTrait that is implemented for `&mut T where T: SomeTrait`
//! should not be marked as "notable" for return values that do not
//! have bounds on the trait itself.
//!
//! [#80737]: https://github.com/rust-lang/rust/issues/80737

#![feature(rustc_attrs)]
#![no_std]

#[rustc_doc_primitive = "reference"]
/// Some useless docs, wouhou!
///
/// We need to put this in here, because notable traits
/// that are implemented on foreign types don't show up.
mod reference {}

// @has doc_notable_trait_mut_t_is_not_an_iterator/fn.fn_no_matches.html
// @!has - '//code[@class="content"]' 'Iterator'
pub fn fn_no_matches<'a, T: 'a>() -> &'a mut T {
    panic!()
}