diff options
Diffstat (limited to 'tests/ui/static/refer-to-other-statics-by-value.rs')
-rw-r--r-- | tests/ui/static/refer-to-other-statics-by-value.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ui/static/refer-to-other-statics-by-value.rs b/tests/ui/static/refer-to-other-statics-by-value.rs new file mode 100644 index 000000000..90f1980f8 --- /dev/null +++ b/tests/ui/static/refer-to-other-statics-by-value.rs @@ -0,0 +1,8 @@ +// run-pass + +static A: usize = 42; +static B: usize = A; + +fn main() { + assert_eq!(B, 42); +} |