From Jason Turner

[diff.cpp20.lex]

Diff to HTML by rtfpessoa

tmp/tmp4g5ihxcn/{from.md → to.md} RENAMED
@@ -9,11 +9,15 @@ identifiers are no longer well-formed.
9
 
10
  **Change:** Concatenated *string-literal*s can no longer have
11
  conflicting *encoding-prefix*es. **Rationale:** Removal of unimplemented
12
  conditionally-supported feature. **Effect on original feature:**
13
  Concatenation of *string-literal*s with different *encoding-prefix*es is
14
- now ill-formed. For example:
 
 
15
 
16
  ``` cpp
17
  auto c = L"a" U"b"; // was conditionally-supported; now ill-formed
18
  ```
19
 
 
 
 
9
 
10
  **Change:** Concatenated *string-literal*s can no longer have
11
  conflicting *encoding-prefix*es. **Rationale:** Removal of unimplemented
12
  conditionally-supported feature. **Effect on original feature:**
13
  Concatenation of *string-literal*s with different *encoding-prefix*es is
14
+ now ill-formed.
15
+
16
+ [*Example 1*:
17
 
18
  ``` cpp
19
  auto c = L"a" U"b"; // was conditionally-supported; now ill-formed
20
  ```
21
 
22
+ — *end example*]
23
+