-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Closed
Labels
bugObserved behavior contradicts documented or intended behaviorObserved behavior contradicts documented or intended behaviorcontributor friendlyThis issue is limited in scope and/or knowledge of Zig internals.This issue is limited in scope and/or knowledge of Zig internals.
Milestone
Description
extern var external_variable: u32;
export const p_external_variable = &external_variable; // Error
var internal_variable: u32 = 42;
export const p_internal_variable = &internal_variable; // OKExpected: Successful compilation
Actual:
<source>:2:36: error: cannot store runtime value in compile time variable
export const p_external_variable = &external_variable;
^
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugObserved behavior contradicts documented or intended behaviorObserved behavior contradicts documented or intended behaviorcontributor friendlyThis issue is limited in scope and/or knowledge of Zig internals.This issue is limited in scope and/or knowledge of Zig internals.