mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-06 12:16:59 +00:00
64a8f785a0
llvm-svn: 14062
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;
|
|
}
|