mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 19:40:10 +01:00
* `\x` escapes are not permitted in character literals * ASCII control characters (U+0000 .. U+001F) are not permitted in character literals unless specified with escape sequences.
12 lines
519 B
Plaintext
12 lines
519 B
Plaintext
# Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
# Exceptions. See /LICENSE for license information.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
# This tells Github to detect files having the extension `.def` as `C++` files, which
|
|
# ensures that these files get syntax highlighted properly.
|
|
*.def linguist-language=C++
|
|
|
|
# This tells Git to treat lexer tests as text when producing diffs, even if
|
|
# they contain non-printable characters.
|
|
toolchain/lex/testdata/*.carbon diff
|