if the type's declaration was previously instantiated in an unimported module. (For an imported type definition, this already worked, because the source location is set to the location of the definition, but for locally-instantiated type definitions, it did not.) llvm-svn: 203425
8 lines
87 B
C
8 lines
87 B
C
#ifndef B_H
|
|
#define B_H
|
|
#include "a.h"
|
|
S<int> *s1;
|
|
T<int>::S *s2;
|
|
T<int>::E e1;
|
|
#endif
|