7 lines
115 B
Plaintext
7 lines
115 B
Plaintext
// Illegal to dereference non-pointer or reference type "float"
|
|
|
|
float func(float a) {
|
|
*a = 0;
|
|
return 0;
|
|
}
|