[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Examples / Kaleidoscope / Chapter5.test
blobf9509197f066858a4c70e0eebb7097147663286a
1 # RUN: Kaleidoscope-Ch5 < %s 2>&1 | FileCheck %s
2 # REQUIRES: default_triple
4 # Test 'if' expression.
5 def foo(x) if x < 10 then 0 else 1;
6 foo(9);
7 foo(11);
8 # CHECK: Evaluated to 0.000000
9 # CHECK: Evaluated to 1.000000
11 # Test 'for' expression.
12 extern printd(x);
13 for i = 1, i < 5, 1.0 in
14   printd(i);
15 # CHECK: 1.0
16 # CHECK: 2.0
17 # CHECK: 3.0
18 # CHECK: 4.0
19 # CHECK: 5.0
20 # CHECK: Evaluated to 0.000000