Home
last modified time | relevance | path

Searched defs:StaticDoubleLinked (Results 1 – 1 of 1) sorted by relevance

/third_party/rust/rust/tests/ui/statics/
Dstatic-recursive.rs4 struct StaticDoubleLinked { struct
5 prev: &'static StaticDoubleLinked, argument
6 next: &'static StaticDoubleLinked, argument
11 static L1: StaticDoubleLinked = StaticDoubleLinked{prev: &L3, next: &L2, data: 1, head: true}; argument