1 // RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
3 // Non-POD classes cannot be passed into a function by component, because their
4 // dtors must be run. Instead, pass them in by reference. The C++ front-end
5 // was mistakenly "thinking" that 'foo' took a structure by component.