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
7 lines
96 B
C
7 lines
96 B
C
#ifndef E_H
|
|
#define E_H
|
|
#include "c.h"
|
|
template struct S<char>;
|
|
template struct T<char>;
|
|
#endif
|