1// Compile with: 2// g++ -g -Wall -c test27-local-base-diff-v0.cc 3struct base 4{ 5 int m0; 6}; 7 8struct S : public base 9{ 10 int m0; 11}; 12 13void 14bar(base&) 15{} 16 17void 18foo(S*) 19{ 20} 21