~mmach/netext73/mesa-haswell

« back to all changes in this revision

Viewing changes to src/compiler/glsl/glcpp/tests/116-disable-line-continuations.c

  • Committer: mmach
  • Date: 2022-09-22 19:56:13 UTC
  • Revision ID: netbit73@gmail.com-20220922195613-wtik9mmy20tmor0i
2022-09-22 21:17:09

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// glcpp-args: --disable-line-continuations
2
 
 
3
 
// This comments ends with a backslash \\
4
 
#define NO_CONTINUATION
5
 
 
6
 
#ifdef NO_CONTINUATION
7
 
success
8
 
#else
9
 
failure
10
 
#endif
11
 
 
12
 
 
13