blob: a4bfccb8d2798f02db54de43f8f8f1599e7f4fe7 [file] [log] [blame]
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001// RUN: %clang_cc1 -fsyntax-only %s
2
3template <typename T>
4struct foo {
5 struct bar;
6
7 bar fn() {
8 // Should not get errors about bar being incomplete here.
9 bar b = bar(1, 2);
10 return b;
11 }
12};
13
14template <typename T>
15struct foo<T>::bar {
16 bar(int, int);
17};
18
19void fn() {
20 foo<int>().fn();
21}