mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
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;
|
||
|
}
|