FuelLabs/sway

Enforce type annotations for constants

Open

#5,758 创建于 2024年3月20日

在 GitHub 查看
 (5 评论) (0 反应) (0 负责人)Rust (5,421 fork)batch import
ODHack12bugcompiler: frontendgood first issueteam:compiler

仓库指标

Star
 (61,702 star)
PR 合并指标
 (平均合并 22小时 6分钟) (30 天内合并 16 个 PR)

描述

We should ensure all const declarations have explicitly named types and provide a helpful error message when they do not.

const OFFSET_TOKEN_ADDRESS = 32; // forbidden
const OFFSET_TOKEN_ADDRESS: u64 = 32; // allowed

贡献者指南