https://discord.com/channels/824777367427612692/824998054930284586/903716544989761588 ``` varargs void two(string ref *values); void one() { two(); // Will this crash or cause a problem? } varargs void two(string ref *values) { if(!values) { printf("Failure\n"); return; } values = allocate(1) ; values[0] = "boop" ; } ```