Add GUI regression test for indent of trait items on mobile
This commit is contained in:
parent
530f8bb3db
commit
caacb04830
3 changed files with 49 additions and 1 deletions
|
@ -691,3 +691,25 @@ impl ImplDoc {
|
|||
impl ImplDoc {
|
||||
pub fn bar5() {}
|
||||
}
|
||||
|
||||
pub trait ItemsTrait {
|
||||
/// You want doc, here is doc!
|
||||
///
|
||||
/// blablala
|
||||
type F;
|
||||
|
||||
/// You want doc, here is doc!
|
||||
///
|
||||
/// blablala
|
||||
const X: u32;
|
||||
|
||||
/// You want doc, here is doc!
|
||||
///
|
||||
/// blablala
|
||||
fn foo() {}
|
||||
|
||||
/// You want doc, here is doc!
|
||||
///
|
||||
/// blablala
|
||||
fn bar();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue