aboutsummaryrefslogtreecommitdiff
path: root/test/input/reduce/destructured_catch.js
blob: 3b2484552bea17883150fc40ad10a47a8ea11a97 (about) (plain)
1
2
3
4
5
6
7
try {
    "foo" in 42;
} catch ({
    message,
}) {
    console.log(message);
}