หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'typename': a late specified return type cannot contain 'auto'
Remarks
If you use the auto keyword as a placeholder for the return type of a function, you must provide a late-specified return type. However, you cannot use another auto keyword to specify the late-specified return type.
Example
For example, the following code fragment yields error C3552.
auto myFunction->auto; // C3552