Skip to content

Commit 2d51a2a

Browse files
committed
Add an example of collapse_debuginfo
1 parent c495b96 commit 2d51a2a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/attributes/debugger.md

+9
Original file line numberDiff line numberDiff line change
@@ -157,5 +157,14 @@ For built-in macros the default is `yes`.
157157

158158
> **Note**: `rustc` has a `-C collapse-macro-debuginfo` CLI option to override both the default collapsing behavior and `#[collapse_debuginfo]` attributes.
159159
160+
```rust
161+
#[collapse_debuginfo(yes)]
162+
macro_rules! example {
163+
() => {
164+
println!("hello!");
165+
};
166+
}
167+
```
168+
160169
[attribute]: ../attributes.md
161170
[_MetaListIdents_]: ../attributes.md#meta-item-attribute-syntax

0 commit comments

Comments
 (0)