artulab
projects
/
openbsd
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
6d01288259afe51148da2368ea1b735d2714ea1a
[openbsd]
/
1
template <typename T> struct M {};
2
3
template <typename T> void f(T &t);
4
5
template <> void f<int>(int &t) {
6
typedef M<int> VType;
7
8
VType p0; // break here
9
}
10
11
int main() {
12
int x;
13
14
f(x);
15
16
return 0;
17
}