File: fixit-const-var-init.cpp

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (28 lines) | stat: -rw-r--r-- 1,472 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// RUN: not %clang_cc1 -fdiagnostics-parseable-fixits -x c++ -std=c++14 %s 2>&1 | FileCheck %s

const int a; // expected-error {{default initialization of an object of const type}}
// CHECK: fix-it:"{{.*}}":{3:12-3:12}:" = 0"

template <class, class> const int b; // expected-error {{default initialization of an object of const type}}
// CHECK: fix-it:"{{.*}}":{6:36-6:36}:" = 0"

template <class T> const int b<int, T>; // expected-error {{default initialization of an object of const type}}
// CHECK: fix-it:"{{.*}}":{9:39-9:39}:" = 0"

template <> const int b<int, float>; // expected-error {{default initialization of an object of const type}}
// CHECK: fix-it:"{{.*}}":{12:36-12:36}:" = 0"

constexpr float c; // expected-error {{must be initialized by a constant expression}}
// CHECK: fix-it:"{{.*}}":{15:18-15:18}:" = 0.0"

template <class, class> constexpr float d; // expected-error {{must be initialized by a constant expression}}
// CHECK: fix-it:"{{.*}}":{18:42-18:42}:" = 0.0"

template <class T> constexpr float d<T, int>; // expected-error {{must be initialized by a constant expression}}
// CHECK: fix-it:"{{.*}}":{21:45-21:45}:" = 0.0"

template <> constexpr float d<int, float>; // expected-error {{must be initialized by a constant expression}}
// CHECK: fix-it:"{{.*}}":{24:42-24:42}:" = 0.0"

void (* const func)(int, int); // expected-error {{default initialization of an object of const type}}
// CHECK: fix-it:"{{.*}}":{27:30-27:30}:" = nullptr"