1
Fork 0

Add GUI regression test for indent of trait items on mobile

This commit is contained in:
Guillaume Gomez 2025-01-24 15:36:52 +01:00
parent 530f8bb3db
commit caacb04830
3 changed files with 49 additions and 1 deletions

View file

@ -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();
}