// RUN: %clang_cc1 -fsyntax-only %s template struct foo { struct bar; bar fn() { // Should not get errors about bar being incomplete here. bar b = bar(1, 2); return b; } }; template struct foo::bar { bar(int, int); }; void fn() { foo().fn(); }