blob: 9f129d5703bf83e2fd98452c2d6a906cf7abab15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// Make sure that we don't escape Shell builtins like `!`, because the
// shell otherwise thinks it's a command and it can't find it.
// RUN: ! false
|