comparison gcc/testsuite/g++.dg/torture/pr42183.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 // { dg-do compile } 1 // { dg-do compile }
2 // { dg-additional-options "-Wno-return-type" }
2 3
3 class IntSize { 4 class IntSize {
4 public: 5 public:
5 IntSize(int width, int height) : m_width(width), m_height(height) { } 6 IntSize(int width, int height) : m_width(width), m_height(height) { }
6 int m_width, m_height; 7 int m_width, m_height;