// Make sure we can cast to a templated type, that requires a conversion by // constructor, from a non-aggregate type. // Build don't link: // prms-id: 3524 template struct ccPair { ccPair (int i) { } }; void foo () { (ccPair)1; }