1 // Test that actually requires network (curl fetch during build) 2 #include <cstdio> 3 #include <cstdlib> 4 5 int main() { 6 // This is a compile-time test - no runtime fetch 7 printf("Built successfully!\n"); 8 return 0; 9 }