mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-27 05:30:49 +00:00
fea1dd0804
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79992 91177308-0d34-0410-b5e6-96231b3b80d8
25 lines
338 B
C++
25 lines
338 B
C++
// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
|
|
|
|
|
|
char* eback();
|
|
|
|
template<typename foo>
|
|
struct basic_filebuf {
|
|
char *instancevar;
|
|
|
|
void callee() {
|
|
instancevar += eback() != eback();
|
|
}
|
|
|
|
void caller();
|
|
};
|
|
|
|
|
|
template<typename _CharT>
|
|
void basic_filebuf<_CharT>::caller() {
|
|
callee();
|
|
}
|
|
|
|
|
|
template class basic_filebuf<char>;
|