aboutsummaryrefslogtreecommitdiff
path: root/patches/patches/070_comptime5.patch
blob: 394d9f1cf930423889a7ceeab8fc40d072b7cc5e (plain)
1
2
3
4
5
6
122,123c122,123
<     const walks_like_duck = ???;
<     const quacks_like_duck = ???;
---
>     const walks_like_duck = @hasDecl(MyType, "waddle");
>     const quacks_like_duck = @hasDecl(MyType, "quack");