We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4243428 commit 39250acCopy full SHA for 39250ac
1 file changed
docs/error-messages/compiler-errors-2/compiler-error-c3083.md
@@ -16,19 +16,17 @@ The qualification used is invalid. Ensure that no extra symbols were used in the
16
17
## Example
18
19
-The following sample generates C3083.
+The following example generates C3083:
20
21
```cpp
22
// C3083.cpp
23
// compile with: /c
24
-struct N {
25
- ~N();
26
-};
27
28
-struct N1 {
29
- ~N1();
+struct S
+{
+ S();
30
};
31
32
-N::N::~N() {} // C3083
33
-N1::~N1() {} // OK
+S::Extra::S() {} // C3083
+S::S() {} // OK
34
```
0 commit comments