It's written on cppreference that for post C++11 versions of the standard one of the cases when copy constructor is implicitly defined as deleted is the following (constructor for class T):
T has a user-defined move constructor or move assignment operator;
It seems to be true according to compilers, however I didn't manage to find it in the standard...
The place seems to be 12.8/11 (at least for 14882:2011), all other cases seem to be there except the aforementioned one..
Where should I look for this particular case?