summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/member-init-assignment.cpp
blob: c23fe2b9c51ee5735509a6726deb24680567b59f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 %s -emit-llvm-only -verify
// PR7291

struct Foo {
  unsigned file_id;

  Foo(unsigned arg);
};

Foo::Foo(unsigned arg) : file_id(arg = 42)
{ }

OpenPOWER on IntegriCloud