mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
2917ca87f7
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14062 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
197 B
C++
18 lines
197 B
C++
|
|
|
|
template<typename Ty>
|
|
struct normal_iterator {
|
|
int FIELD;
|
|
};
|
|
|
|
void foo(normal_iterator<int>);
|
|
normal_iterator<int> baz();
|
|
|
|
void bar() {
|
|
foo(baz());
|
|
}
|
|
|
|
void *bar2() {
|
|
return (void*)foo;
|
|
}
|