aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/Inputs/declare-use/j.h
blob: 04d46a9fb2b7d92d88a4995a30de23ea06294e6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef J_H
#define J_H

#define STR(x) #x
#define HDR(x) STR(x.h)

#include ALLOWED_INC
#include HDR(a)

const int j = a * a + b;

// expected-no-diagnostics

#endif