blob: 6e83cd26c2efe1f72966feffe78319c9df2ce9dd [file] [log] [blame]
// Test PR 15736 fix
// Contributed by Devang Patel <dpatel@apple.com>
// { dg-do compile }
struct B {
int n;
};
struct A : B {
using B::n;
};