1*eb8650a7SLouis Dionne //===----------------------------------------------------------------------===// 2e434b34fSJonathan Roelofs // 357b08b09SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 457b08b09SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 557b08b09SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6e434b34fSJonathan Roelofs // 7e434b34fSJonathan Roelofs //===----------------------------------------------------------------------===// 8e434b34fSJonathan Roelofs 9e434b34fSJonathan Roelofs // Can you have a catch clause of array type that catches anything? 108c61114cSLouis Dionne // UNSUPPORTED: no-exceptions 11e434b34fSJonathan Roelofs 12e434b34fSJonathan Roelofs #include <cassert> 13e434b34fSJonathan Roelofs main(int,char **)14504bc07dSLouis Dionneint main(int, char**) 15e434b34fSJonathan Roelofs { 16e434b34fSJonathan Roelofs typedef char Array[4]; 17e434b34fSJonathan Roelofs Array a = {'H', 'i', '!', 0}; 18e434b34fSJonathan Roelofs try 19e434b34fSJonathan Roelofs { 20e434b34fSJonathan Roelofs throw a; // converts to char* 21e434b34fSJonathan Roelofs assert(false); 22e434b34fSJonathan Roelofs } 23e434b34fSJonathan Roelofs catch (Array b) // equivalent to char* 24e434b34fSJonathan Roelofs { 25e434b34fSJonathan Roelofs } 26e434b34fSJonathan Roelofs catch (...) 27e434b34fSJonathan Roelofs { 28e434b34fSJonathan Roelofs assert(false); 29e434b34fSJonathan Roelofs } 30504bc07dSLouis Dionne 31504bc07dSLouis Dionne return 0; 32e434b34fSJonathan Roelofs } 33