summaryrefslogtreecommitdiffstats
path: root/test/Parser/cxx0x-override-control-keywords.cpp
blob: a9096af337a2c13771f9a0efb7af2c580bf55002 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
// expected-no-diagnostics

struct Base {
  virtual void override();
};

struct S : Base {
  virtual void final() final;
  virtual void override() override;
};

struct T : Base {
  virtual void override() override { } 
};

struct override;
struct Base2 {
  virtual override override(int override);
};

struct A : Base2 {
  virtual struct override override(int override) override;
};