mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 15:12:31 +00:00
25 lines
576 B
Zig
25 lines
576 B
Zig
const std = @import("std");
|
|
const expect = std.testing.expect;
|
|
|
|
const Foo = struct {
|
|
nope: i32,
|
|
|
|
pub var blah = "xxx";
|
|
const hi = 1;
|
|
};
|
|
|
|
test "@hasDecl" {
|
|
try expect(@hasDecl(Foo, "blah"));
|
|
|
|
// Even though `hi` is private, @hasDecl returns true because this test is
|
|
// in the same file scope as Foo. It would return false if Foo was declared
|
|
// in a different file.
|
|
try expect(@hasDecl(Foo, "hi"));
|
|
|
|
// @hasDecl is for declarations; not fields.
|
|
try expect(!@hasDecl(Foo, "nope"));
|
|
try expect(!@hasDecl(Foo, "nope1234"));
|
|
}
|
|
|
|
// test
|