Skip to content

Commit 8dde3eb

Browse files
committed
add a ZST exception
1 parent c96c0a7 commit 8dde3eb

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/items/static-items.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ Static items have the `static` lifetime, which outlives all other lifetimes in a
2121
Static items do not call [`drop`] at the end of the program.
2222

2323
r[items.static.storage-disjointness]
24-
This allocated object is disjoint from all other `static` objects as well as heap-allocated and
25-
stack-allocated variables. However, the storage of immutable `static` items can overlap with objects
26-
that do not themselves have a unique address, such as [promoteds] and [`const` items][constant].
24+
If the `static` has a size of at least 1 byte, this allocated object is disjoint from all other
25+
`static` objects as well as heap-allocated and stack-allocated variables. However, the storage of
26+
immutable `static` items can overlap with objects that do not themselves have a unique address, such
27+
as [promoteds] and [`const` items][constant].
2728

2829
r[items.static.namespace]
2930
The static declaration defines a static value in the [value namespace] of the module or block where it is located.

0 commit comments

Comments
 (0)