今後廃止される予定の関数や変数などを使用しています。 ソースコードを更新し、これらを使用しない形に変更してください。
deprecated キーワードは、その宣言が廃止予定であることを示します。
廃止予定の宣言にドキュメンテーションコメント (/// で始まるコメント) が
ある場合は、あわせて表示されます。
代替となる新しいやり方が記載されている場合も多いので参考にしてください。
const std = @import("std");
///This function is depricated; use std.debug.warn directly.
deprecated fn sayHello() void {
    std.debug.warn("Hello.\n", .{});
}
pub fn main() anyerror!void {
    sayHello(); // warning[E10000]
}
      ☰ 人の生きた証は永遠に残るよう ☰
      Copyright © 2018-2020 connectFree Corporation. All rights reserved. | 特定商取引法に基づく表示
      Zen, the Zen three-circles logo and The Zen Programming Language are trademarks of connectFree corporation in Japan and other countries.