1 //===-- c.c -----------------------------------------------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 int d_init() 10 { 11 return 123; 12 } 13 14 int d_global = d_init(); 15 16 int 17 d_function () 18 { // Find this line number within d_dunction(). 19 return 700; 20 } 21