]> git.proxmox.com Git - rustc.git/blame - src/llvm/tools/clang/test/CXX/class/class.mem/p5-0x.cpp
Imported Upstream version 0.6
[rustc.git] / src / llvm / tools / clang / test / CXX / class / class.mem / p5-0x.cpp
CommitLineData
223e47cc
LB
1// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
2
3int f();
4
5struct S
6{
7 int a = f(); // ok
8 int b = g(); // expected-error {{use of undeclared identifier 'g'}}
9};