От: | night beast | ||
Дата: | 07.09.06 08:46 | ||
Оценка: | 6 (1) |
#include <iostream>
typedef char (&first)[1];
typedef char (&second)[2];
first f(double);
template <typename T>
void g(T const& x)
{
first test=f(x);
}
int main()
{
g(1);
std::cout << '\n';
}
second f(int);