All pastes #1897899 Raw Edit

Ausprgung

public cpp v1 · immutable
#1897899 ·published 2010-07-10 15:42 UTC
rendered paste body
#include <iostream>using namespace std;struct X{   X()   {      cout << "X::X()" << endl;   }};template <class T>struct Y{   T aT;   void impossible()   {      aT.hello();   }};template class Y<X>; // die erzwungenede vollstaendige Auspraegung                     // fuehrt zu einem Fehler, da X ueber kein                     // Member namens hello() verfuegtint main(){   return 0;}