オフィスアワーがそろそろ始まるよ!()

E10系 (Warnings)

E10000

今後廃止される予定の関数や変数などを使用しています。 ソースコードを更新し、これらを使用しない形に変更してください。

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]
}

Chapter 1

Chapter 2

Chapter 3

Chapter 4

Chapter 5

Chapter 6

Chapter 7

Chapter 8

Chapter 9

Chapter 10

Chapter 11

Chapter 12

Chapter 13

Chapter 14

Chapter 15

Appendix

Error Explanation

☰ 人の生きた証は永遠に残るよう ☰
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.