lol test too i guess

This commit is contained in:
Adam D. Ruppe 2023-12-30 19:26:17 -05:00
parent ec062fab06
commit 9f792bdfeb
1 changed files with 16 additions and 0 deletions

16
jsvar.d
View File

@ -2871,6 +2871,22 @@ unittest {
assert(g.foo()(new Object) == "generic");
}
unittest {
import std.typecons;
static struct A {
int a;
Nullable!int b;
}
var a = A(3);
assert(a.a == 3);
assert(a.b == null);
a = A(5, nullable(4));
assert(a.a == 5);
assert(a.b == 4);
}
bool appearsNumeric(string n) {
if(n.length == 0)
return false;