You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
259 B

// To compile this type:
// g++ -g -Wall -o test6-var-changed-app -L. -ltest6-var-changed-libapp-v0 test6-var-changed-app.cc
#include "test6-var-changed-libapp-v0.h"
int
main()
{
S0* s0 = bar;
S1* s1 = foo;
if (s0 && s1)
return 1;
return 0;
}